HEX
Server: nginx/1.18.0
System: Linux m1-ws1-ams3 5.4.0-148-generic #165-Ubuntu SMP Tue Apr 18 08:53:12 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /opt/aphex/sites/sadepisaroitaniitynkukkasilla.fi/sadepisaroitaniitynkukkasilla.fi.sql
-- MySQL dump 10.13  Distrib 8.0.42, for Linux (x86_64)
--
-- Host: localhost    Database: sadepisaroitaniitynkukkasilla_fi
-- ------------------------------------------------------
-- Server version	8.0.42-0ubuntu0.20.04.1

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint unsigned NOT NULL DEFAULT '1',
  `link_rating` int NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
  `option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=17605 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://sadepisaroitaniitynkukkasilla.fi','yes'),(2,'home','http://sadepisaroitaniitynkukkasilla.fi','yes'),(3,'blogname','Sadepisaroita Niitynkukkasilla','yes'),(4,'blogdescription',' Kauneus, muoti, elämäntapa ja onnellisuus','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:111:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=5&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:31:\"cache-enabler/cache-enabler.php\";a:2:{i:0;s:13:\"Cache_Enabler\";i:1;s:12:\"on_uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','30','yes'),(82,'page_on_front','5','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','117','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1633433284','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','unset','yes'),(98,'initial_db_version','49752','yes'),(99,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:11:\"topbar-left\";a:0:{}s:12:\"topbar-right\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:12:{i:1715220417;a:1:{s:27:\"wpil_broken_link_check_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"10min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1715223658;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1715234704;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1715235965;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1715235968;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1715259110;a:5:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1715266373;a:1:{s:26:\"wpil_search_console_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"wpil_14_days\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1209600;}}}i:1715267884;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1715299503;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1715691110;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1732609160;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1618458941;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(141,'recently_activated','a:1:{s:31:\"custom-robots/custom-robots.php\";i:1747128895;}','yes'),(150,'elementor_version','3.4.4','yes'),(151,'elementor_install_history','a:6:{s:5:\"3.1.4\";i:1618413484;s:5:\"3.2.4\";i:1623801904;s:5:\"3.2.5\";i:1623888269;s:5:\"3.3.0\";i:1626221297;s:5:\"3.3.1\";i:1626826415;s:5:\"3.4.4\";i:1631626277;}','yes'),(152,'_elementor_installed_time','1618413493','yes'),(153,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(154,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:82:\"Elementor 3.15 is Here - Check out The Taxonomy Filter, Nested Accordion, and More\";s:7:\"excerpt\";s:241:\"This release includes the first phase of the much-awaited Taxonomy Filter, the new and improved Accordion widget with nested items, enhanced styling capabilities for Carousel widgets, fun new Elementor AI Image tools, and the new Apps Page. \";s:7:\"created\";i:1691513693;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:157:\"https://elementor.com/blog/introducing-315-taxonomy-filter-nested-accordion-and-more/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.14 - Gain More Design Flexibility with Nested Carousels and Loop Grid Ads\";s:7:\"excerpt\";s:239:\"This version includes a new Carousel widget, extends the Loop Grid with the ability to place static content within the Loop, a Global Styles Preview, and a multitude of highly requested styling capabilities, and new Elementor AI features. \";s:7:\"created\";i:1688394655;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:154:\"https://elementor.com/blog/introducing-314-nested-carousel-loop-grid-ads-and-more/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:87:\"Professional Hosting Tools that Boost Control and Elevate Your Online Business Presence\";s:7:\"excerpt\";s:249:\"Experience more control and workflow efficiency with powerful tools like phpMyAdmin, SFTP, and Cloning. And elevate your online brand and business with Custom Domains and Professional Mailboxes, ensuring a professional and distinct website presence.\";s:7:\"created\";i:1688054065;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:130:\"https://elementor.com/blog/new-professional-hosting-tools/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(159,'envato_elements_version','2.0.9','yes'),(160,'envato_elements_install_time','1618414641','yes'),(169,'rb_disable_comments','a:2:{s:17:\"remove_everywhere\";b:1;s:19:\"disabled_post_types\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";i:3;s:14:\"e-landing-page\";}}','yes'),(172,'current_theme','Colon','yes'),(173,'theme_mods_colon','a:11:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}s:18:\"custom_css_post_id\";i:113;s:24:\"colon_site_primary_color\";s:7:\"#8224e3\";s:11:\"custom_logo\";i:115;s:32:\"colon_display_site_title_tagline\";b:0;s:30:\"colon_enable_header_menu_align\";b:1;s:24:\"colon_menu_items_spacing\";i:20;s:27:\"colon_menu_spacing_from_top\";i:0;s:32:\"colon_header_toggle_menu_spacing\";i:30;s:27:\"colon_footer_copyright_text\";s:45:\"Copyright 2021 Sadepisaroita Niitynkukkasilla\";}','yes'),(174,'theme_switched','','yes'),(175,'widget_colon_blog_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(177,'spiraclethemes_sitelib_install_date','2021-04-15 3:57:16','yes'),(178,'elementor_active_kit','8','yes'),(179,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(180,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(181,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(187,'envato_elements_options','a:1:{i:1;a:1:{s:16:\"downloaded_items\";a:1:{s:38:\"194-3-211ac0dc7c0f657c0016e32ce9058377\";i:9;}}}','no'),(188,'elementor_disable_color_schemes','yes','yes'),(189,'elementor_disable_typography_schemes','yes','yes'),(207,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(225,'category_children','a:0:{}','yes'),(267,'jetpack_active_modules','a:0:{}','yes'),(269,'recovery_keys','a:0:{}','yes'),(278,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:49:\"https://servmask.com/products/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.63\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:259:\"<ul class=\"description\"><li>Remove the import limit of 512MB</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/3975869e-ea4f-4ac0-bbda-859c6d130ab1/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:120:\"https://d1zsuv05404qm1.cloudfront.net/3975869e-ea4f-4ac0-bbda-859c6d130ab1/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/3975869e-ea4f-4ac0-bbda-859c6d130ab1/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/3975869e-ea4f-4ac0-bbda-859c6d130ab1/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/3975869e-ea4f-4ac0-bbda-859c6d130ab1/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40188;}}','yes'),(281,'ai1wmue_plugin_key','44e0e7aa-3cec-4b15-86f7-bc5a8484a2be','yes'),(282,'db_upgraded','','yes'),(285,'finished_updating_comment_type','1','yes'),(311,'elementor_log','a:21:{s:32:\"01e6fccf360ee2236469b7b44bae4608\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-06-16 00:05:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-06-16 00:05:03\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"334c942b8f0695e24e06393fa3364626\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-06-16 00:05:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-06-16 00:05:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"37f33b6e812489f28a791eaf919bc968\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-06-16 00:05:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-06-16 00:05:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"fa2557d85b852cd856737a7da4353687\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-06-16 00:05:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-06-16 00:05:04\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"c9068b8ce978bf8b09d4bcdbd53c6ea4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-06-16 00:05:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-06-16 00:05:04\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"32872961e18770dd00203a55c03372d1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-06-17 00:04:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.2.4\";s:2:\"to\";s:5:\"3.2.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-06-17 00:04:29\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.2.4\";s:2:\"to\";s:5:\"3.2.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b5c8ea5451e05b0fd10c06d26b9dc54b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-14 00:05:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.2.5\";s:2:\"to\";s:5:\"3.3.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-14 00:05:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.2.5\";s:2:\"to\";s:5:\"3.3.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"951924ec0b7578b019b91a04d7527b30\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-14 00:08:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-14 00:08:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"1bdbb77df517c2a5c057e3dea584a1ef\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-14 00:08:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-14 00:08:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"a88f95a1ff61c37039b9a08699a38ace\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-14 00:08:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-14 00:08:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"18485335a14d76a9365a114ee9009cca\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-14 00:08:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.2.5\";s:2:\"to\";s:5:\"3.3.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-14 00:08:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.2.5\";s:2:\"to\";s:5:\"3.3.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"851ababeaea9e6bbacff83f012df15e0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-21 00:06:12\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.0\";s:2:\"to\";s:5:\"3.3.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-21 00:06:12\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.0\";s:2:\"to\";s:5:\"3.3.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"41269f770e1c9af84326a12a5395eb54\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-21 00:13:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-21 00:13:35\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"2704b70852c76aeb776fdb654ea0a80c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-21 00:13:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-21 00:13:35\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"184f5d73df576c095171269abe323371\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-21 00:13:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-21 00:13:35\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"a08564499bb0da404588de2a78ccb1ca\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-07-21 00:13:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.0\";s:2:\"to\";s:5:\"3.3.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-21 00:13:35\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.0\";s:2:\"to\";s:5:\"3.3.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5e7afd8feede32f527ffe4213bfd5172\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-14 13:31:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.1\";s:2:\"to\";s:5:\"3.4.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-14 13:31:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.1\";s:2:\"to\";s:5:\"3.4.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"4fcecb9133b45c41c0d91ff43aee8b89\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-14 13:31:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-14 13:31:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"6e77802f554868665bae4b50ddeb32f1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-14 13:31:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-14 13:31:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"0b1248ed8fe227a30d896dabef7a34e9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-14 13:31:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-14 13:31:17\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"a8d144baca61a2dc97d7a09e6f9ade7b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-14 13:31:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.1\";s:2:\"to\";s:5:\"3.4.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-14 13:31:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.1\";s:2:\"to\";s:5:\"3.4.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}}','no'),(1611,'active_plugins','a:12:{i:0;s:35:\"advanced-import/advanced-import.php\";i:1;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:2;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:43:\"disable-comments-rb/disable-comments-rb.php\";i:5;s:23:\"elementor/elementor.php\";i:6;s:35:\"envato-elements/envato-elements.php\";i:7;s:37:\"link-whisper-premium/link-whisper.php\";i:8;s:59:\"spiraclethemes-site-library/spiraclethemes-site-library.php\";i:9;s:37:\"wordpress-autoblogging/basic-auth.php\";i:10;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:11;s:19:\"wpdeepl/wpdeepl.php\";i:12;s:25:\"wpdeeplpro/wpdeeplpro.php\";}','yes'),(1612,'ai1wm_secret_key','2lkWDLJ47DKs','yes'),(1613,'ai1wm_backups_labels','a:0:{}','yes'),(1614,'ai1wm_sites_links','a:0:{}','yes'),(1615,'template','colon','yes'),(1616,'stylesheet','colon','yes'),(1617,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1621,'https_detection_errors','a:0:{}','yes'),(1808,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":8,\"critical\":1}','yes'),(2283,'wp_force_deactivated_plugins','a:0:{}','yes'),(3440,'elementor_controls_usage','a:2:{s:7:\"section\";a:9:{s:7:\"heading\";a:2:{s:5:\"count\";i:31;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:31;s:5:\"align\";i:28;s:11:\"header_size\";i:19;s:12:\"align_tablet\";i:12;s:12:\"align_mobile\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:31;s:21:\"typography_typography\";i:31;s:22:\"typography_font_family\";i:31;s:20:\"typography_font_size\";i:31;s:22:\"typography_font_weight\";i:31;s:25:\"typography_text_transform\";i:31;s:25:\"typography_letter_spacing\";i:31;s:27:\"typography_font_size_mobile\";i:31;s:22:\"typography_line_height\";i:12;s:29:\"typography_line_height_mobile\";i:12;s:32:\"typography_letter_spacing_mobile\";i:31;s:27:\"typography_font_size_tablet\";i:12;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:31;s:15:\"_padding_tablet\";i:12;s:7:\"_margin\";i:12;s:14:\"_margin_mobile\";i:20;s:15:\"_padding_mobile\";i:20;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:18;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:59;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:53;s:21:\"space_between_widgets\";i:27;s:16:\"content_position\";i:12;s:5:\"align\";i:7;s:19:\"_inline_size_tablet\";i:26;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:44;s:7:\"padding\";i:49;s:14:\"padding_mobile\";i:14;s:14:\"padding_tablet\";i:18;s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:10;}}s:5:\"style\";a:4:{s:12:\"section_typo\";a:1:{s:10:\"text_align\";i:5;}s:13:\"section_style\";a:9:{s:21:\"background_background\";i:16;s:16:\"background_image\";i:6;s:16:\"background_color\";i:10;s:26:\"background_position_tablet\";i:1;s:17:\"background_repeat\";i:8;s:24:\"background_repeat_tablet\";i:1;s:15:\"background_size\";i:8;s:19:\"background_position\";i:8;s:15:\"background_xpos\";i:1;}s:26:\"section_background_overlay\";a:13:{s:24:\"background_overlay_color\";i:10;s:27:\"background_overlay_position\";i:1;s:34:\"background_overlay_position_tablet\";i:1;s:25:\"background_overlay_repeat\";i:1;s:32:\"background_overlay_repeat_tablet\";i:1;s:23:\"background_overlay_size\";i:1;s:30:\"background_overlay_size_tablet\";i:1;s:34:\"background_overlay_bg_width_tablet\";i:1;s:26:\"background_overlay_opacity\";i:10;s:30:\"background_overlay_size_mobile\";i:1;s:34:\"background_overlay_bg_width_mobile\";i:1;s:29:\"background_overlay_background\";i:9;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:11;s:12:\"border_width\";i:11;s:12:\"border_color\";i:11;s:19:\"border_hover_border\";i:1;s:18:\"border_hover_width\";i:1;s:19:\"border_radius_hover\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:44;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:13:\"content_width\";i:12;s:3:\"gap\";i:4;s:13:\"custom_height\";i:6;s:6:\"height\";i:5;s:20:\"custom_height_tablet\";i:4;s:15:\"stretch_section\";i:3;s:16:\"content_position\";i:3;s:12:\"height_inner\";i:5;s:19:\"custom_height_inner\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:7:{s:13:\"margin_mobile\";i:9;s:14:\"padding_mobile\";i:22;s:7:\"padding\";i:31;s:14:\"padding_tablet\";i:17;s:13:\"margin_tablet\";i:6;s:6:\"margin\";i:22;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:3;s:20:\"reverse_order_mobile\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:11:{s:21:\"background_background\";i:14;s:16:\"background_image\";i:4;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:7;s:15:\"background_size\";i:8;s:16:\"background_color\";i:13;s:26:\"background_position_mobile\";i:2;s:22:\"background_size_mobile\";i:2;s:21:\"background_attachment\";i:4;s:25:\"background_video_fallback\";i:3;s:15:\"background_xpos\";i:1;}s:26:\"section_background_overlay\";a:15:{s:24:\"background_overlay_color\";i:5;s:26:\"background_overlay_opacity\";i:8;s:27:\"background_overlay_position\";i:5;s:25:\"background_overlay_repeat\";i:5;s:23:\"background_overlay_size\";i:2;s:16:\"css_filters_blur\";i:2;s:26:\"background_overlay_color_b\";i:4;s:31:\"background_overlay_color_b_stop\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:29:\"background_overlay_background\";i:4;s:22:\"css_filters_brightness\";i:4;s:29:\"background_overlay_color_stop\";i:3;s:32:\"background_overlay_gradient_type\";i:1;s:24:\"background_overlay_image\";i:3;s:20:\"css_filters_saturate\";i:2;}s:21:\"section_shape_divider\";a:7:{s:23:\"shape_divider_top_width\";i:4;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:4;s:26:\"shape_divider_bottom_width\";i:4;s:33:\"shape_divider_bottom_width_mobile\";i:4;s:27:\"shape_divider_bottom_height\";i:4;s:34:\"shape_divider_bottom_height_mobile\";i:4;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:15;s:12:\"border_width\";i:17;s:12:\"border_color\";i:17;s:19:\"border_hover_border\";i:8;s:18:\"border_hover_width\";i:8;s:18:\"border_hover_color\";i:8;s:13:\"border_radius\";i:2;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:3;s:15:\"hover_animation\";i:3;s:19:\"hover_primary_color\";i:2;}}s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:4:\"link\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:30;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:30;s:5:\"align\";i:30;s:12:\"align_mobile\";i:30;s:12:\"align_tablet\";i:30;s:13:\"selected_icon\";i:30;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:18:{s:21:\"typography_typography\";i:30;s:22:\"typography_font_family\";i:30;s:20:\"typography_font_size\";i:30;s:22:\"typography_font_weight\";i:30;s:25:\"typography_text_transform\";i:30;s:16:\"background_color\";i:30;s:13:\"border_radius\";i:30;s:28:\"button_box_shadow_box_shadow\";i:30;s:12:\"text_padding\";i:30;s:17:\"button_text_color\";i:30;s:15:\"hover_animation\";i:29;s:13:\"border_border\";i:29;s:12:\"border_width\";i:30;s:12:\"border_color\";i:30;s:25:\"typography_letter_spacing\";i:13;s:27:\"typography_font_size_mobile\";i:9;s:11:\"hover_color\";i:6;s:19:\"text_padding_mobile\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:30;s:7:\"_margin\";i:30;s:15:\"_padding_mobile\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:30;s:18:\"animation_duration\";i:30;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:16:\"_offset_x_tablet\";i:1;s:16:\"_offset_x_mobile\";i:1;s:16:\"_offset_y_tablet\";i:1;s:16:\"_offset_y_mobile\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:6;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:3;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_line_height\";i:3;s:25:\"typography_letter_spacing\";i:3;s:12:\"align_tablet\";i:3;s:12:\"align_mobile\";i:3;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:29:\"typography_line_height_mobile\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:22:\"css_filters_css_filter\";i:4;s:22:\"css_filters_brightness\";i:4;s:20:\"css_filters_contrast\";i:4;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;}s:20:\"section_social_hover\";a:1:{s:19:\"hover_primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:7:\"wp-page\";a:9:{s:7:\"heading\";a:2:{s:5:\"count\";i:27;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:27;s:5:\"align\";i:24;s:11:\"header_size\";i:17;s:12:\"align_tablet\";i:10;s:12:\"align_mobile\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:27;s:21:\"typography_typography\";i:27;s:22:\"typography_font_family\";i:27;s:20:\"typography_font_size\";i:27;s:22:\"typography_font_weight\";i:27;s:25:\"typography_text_transform\";i:25;s:25:\"typography_letter_spacing\";i:27;s:27:\"typography_font_size_mobile\";i:27;s:22:\"typography_line_height\";i:10;s:29:\"typography_line_height_mobile\";i:10;s:32:\"typography_letter_spacing_mobile\";i:27;s:27:\"typography_font_size_tablet\";i:10;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:27;s:15:\"_padding_tablet\";i:10;s:7:\"_margin\";i:10;s:14:\"_margin_mobile\";i:18;s:15:\"_padding_mobile\";i:18;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:14;s:23:\"_element_vertical_align\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:47;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:42;s:21:\"space_between_widgets\";i:21;s:16:\"content_position\";i:12;s:5:\"align\";i:7;s:19:\"_inline_size_tablet\";i:22;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:30;s:7:\"padding\";i:35;s:14:\"padding_mobile\";i:13;s:14:\"padding_tablet\";i:13;s:13:\"margin_mobile\";i:4;s:13:\"margin_tablet\";i:6;}}s:5:\"style\";a:4:{s:12:\"section_typo\";a:1:{s:10:\"text_align\";i:5;}s:13:\"section_style\";a:9:{s:21:\"background_background\";i:12;s:16:\"background_image\";i:4;s:16:\"background_color\";i:6;s:26:\"background_position_tablet\";i:1;s:17:\"background_repeat\";i:5;s:24:\"background_repeat_tablet\";i:1;s:15:\"background_size\";i:5;s:19:\"background_position\";i:5;s:15:\"background_xpos\";i:1;}s:26:\"section_background_overlay\";a:17:{s:24:\"background_overlay_color\";i:6;s:27:\"background_overlay_position\";i:1;s:34:\"background_overlay_position_tablet\";i:1;s:25:\"background_overlay_repeat\";i:1;s:32:\"background_overlay_repeat_tablet\";i:1;s:23:\"background_overlay_size\";i:1;s:30:\"background_overlay_size_tablet\";i:1;s:34:\"background_overlay_bg_width_tablet\";i:1;s:26:\"background_overlay_opacity\";i:6;s:30:\"background_overlay_size_mobile\";i:1;s:34:\"background_overlay_bg_width_mobile\";i:1;s:29:\"background_overlay_background\";i:6;s:22:\"css_filters_css_filter\";i:1;s:16:\"css_filters_blur\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_contrast\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:7;s:12:\"border_width\";i:7;s:12:\"border_color\";i:7;s:19:\"border_hover_border\";i:1;s:18:\"border_hover_width\";i:1;s:19:\"border_radius_hover\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:38;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:13:\"content_width\";i:10;s:3:\"gap\";i:3;s:13:\"custom_height\";i:5;s:6:\"height\";i:5;s:20:\"custom_height_tablet\";i:3;s:15:\"stretch_section\";i:3;s:16:\"content_position\";i:3;s:12:\"height_inner\";i:5;s:19:\"custom_height_inner\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:7:{s:13:\"margin_mobile\";i:6;s:14:\"padding_mobile\";i:18;s:7:\"padding\";i:25;s:14:\"padding_tablet\";i:16;s:13:\"margin_tablet\";i:5;s:6:\"margin\";i:17;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:3;s:20:\"reverse_order_mobile\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:13:{s:21:\"background_background\";i:14;s:16:\"background_image\";i:4;s:19:\"background_position\";i:7;s:17:\"background_repeat\";i:6;s:15:\"background_size\";i:7;s:16:\"background_color\";i:13;s:26:\"background_position_mobile\";i:2;s:22:\"background_size_mobile\";i:2;s:21:\"background_attachment\";i:5;s:25:\"background_video_fallback\";i:3;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;s:19:\"background_bg_width\";i:1;}s:26:\"section_background_overlay\";a:15:{s:24:\"background_overlay_color\";i:4;s:26:\"background_overlay_opacity\";i:7;s:27:\"background_overlay_position\";i:5;s:25:\"background_overlay_repeat\";i:5;s:23:\"background_overlay_size\";i:2;s:16:\"css_filters_blur\";i:2;s:26:\"background_overlay_color_b\";i:3;s:31:\"background_overlay_color_b_stop\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:29:\"background_overlay_background\";i:4;s:22:\"css_filters_brightness\";i:3;s:29:\"background_overlay_color_stop\";i:2;s:32:\"background_overlay_gradient_type\";i:1;s:24:\"background_overlay_image\";i:3;s:20:\"css_filters_saturate\";i:1;}s:21:\"section_shape_divider\";a:7:{s:23:\"shape_divider_top_width\";i:3;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:3;s:26:\"shape_divider_bottom_width\";i:3;s:33:\"shape_divider_bottom_width_mobile\";i:3;s:27:\"shape_divider_bottom_height\";i:3;s:34:\"shape_divider_bottom_height_mobile\";i:3;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:11;s:12:\"border_width\";i:12;s:12:\"border_color\";i:12;s:19:\"border_hover_border\";i:8;s:18:\"border_hover_width\";i:8;s:18:\"border_hover_color\";i:8;s:13:\"border_radius\";i:1;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:3;s:15:\"hover_animation\";i:3;s:19:\"hover_primary_color\";i:2;}}s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"link\";i:2;s:13:\"selected_icon\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:8:{s:4:\"text\";i:18;s:5:\"align\";i:18;s:12:\"align_mobile\";i:18;s:12:\"align_tablet\";i:18;s:13:\"selected_icon\";i:18;s:4:\"link\";i:2;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:21:\"typography_typography\";i:18;s:22:\"typography_font_family\";i:18;s:20:\"typography_font_size\";i:18;s:22:\"typography_font_weight\";i:18;s:25:\"typography_text_transform\";i:18;s:16:\"background_color\";i:18;s:13:\"border_radius\";i:18;s:28:\"button_box_shadow_box_shadow\";i:18;s:12:\"text_padding\";i:18;s:17:\"button_text_color\";i:18;s:15:\"hover_animation\";i:17;s:13:\"border_border\";i:18;s:12:\"border_width\";i:18;s:12:\"border_color\";i:18;s:25:\"typography_letter_spacing\";i:12;s:27:\"typography_font_size_mobile\";i:8;s:11:\"hover_color\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:18;s:7:\"_margin\";i:18;s:15:\"_padding_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:18;s:18:\"animation_duration\";i:18;}s:17:\"_section_position\";a:7:{s:9:\"_position\";i:1;s:16:\"_offset_x_tablet\";i:1;s:16:\"_offset_x_mobile\";i:1;s:16:\"_offset_y_tablet\";i:1;s:16:\"_offset_y_mobile\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:5;s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:22:\"typography_line_height\";i:5;s:25:\"typography_letter_spacing\";i:5;s:12:\"align_tablet\";i:5;s:12:\"align_mobile\";i:5;s:20:\"typography_font_size\";i:5;s:27:\"typography_font_size_mobile\";i:5;s:29:\"typography_line_height_mobile\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:15:\"_padding_mobile\";i:5;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:22:\"image_custom_dimension\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:22:\"css_filters_css_filter\";i:2;s:22:\"css_filters_brightness\";i:2;s:20:\"css_filters_contrast\";i:2;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;}s:20:\"section_social_hover\";a:1:{s:19:\"hover_primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}}','no'),(3446,'_elementor_global_css','a:7:{s:4:\"time\";i:1631626692;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(17082,'cache_enabler','a:19:{s:7:\"version\";s:5:\"1.8.7\";s:20:\"use_trailing_slashes\";i:1;s:19:\"permalink_structure\";s:18:\"has_trailing_slash\";s:13:\"cache_expires\";i:0;s:17:\"cache_expiry_time\";i:0;s:30:\"clear_site_cache_on_saved_post\";i:0;s:33:\"clear_site_cache_on_saved_comment\";i:0;s:30:\"clear_site_cache_on_saved_term\";i:0;s:30:\"clear_site_cache_on_saved_user\";i:0;s:34:\"clear_site_cache_on_changed_plugin\";i:0;s:26:\"convert_image_urls_to_webp\";i:0;s:12:\"mobile_cache\";i:0;s:14:\"compress_cache\";i:0;s:11:\"minify_html\";i:0;s:20:\"minify_inline_css_js\";i:0;s:17:\"excluded_post_ids\";s:0:\"\";s:19:\"excluded_page_paths\";s:0:\"\";s:22:\"excluded_query_strings\";s:0:\"\";s:16:\"excluded_cookies\";s:0:\"\";}','yes'),(17122,'wpil_2_license_status','','yes'),(17123,'wpil_2_license_key','','yes'),(17124,'wpil_2_license_data','','yes'),(17125,'wpil_2_ignore_numbers','1','yes'),(17126,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(17127,'wpil_2_links_open_new_tab','0','yes'),(17128,'wpil_2_debug_mode','0','yes'),(17129,'wpil_option_update_reporting_data_on_save','0','yes'),(17130,'wpil_2_ignore_words','-\r\n-\r\na\r\nabout\r\nabove\r\nactually\r\nadd\r\nafter\r\nagain\r\nagainst\r\nago\r\nall\r\nam\r\nan\r\nand\r\nanother\r\nanswer\r\nany\r\nare\r\naren\'t\r\nas\r\nat\r\nbase\r\nbe\r\nbecause\r\nbeen\r\nbefore\r\nbeing\r\nbelow\r\nbest\r\nbetter\r\nbetween\r\nboth\r\nbut\r\nby\r\ncan\r\ncan\'t\r\ncannot\r\ncons\r\ncould\r\ncouldn\'t\r\ndid\r\ndidn\'t\r\ndifference\r\ndifferent\r\ndo\r\ndoes\r\ndoesn\'t\r\ndoing\r\ndon\'t\r\ndone\r\ndown\r\nduring\r\neach\r\neasier\r\neasy\r\neight\r\neven\r\nfar\r\nfew\r\nfind\r\nfirst\r\nfive\r\nfor\r\nfour\r\nfree\r\nfrom\r\nfurther\r\ngeneral\r\nget\r\ngett\r\ngetting\r\ngo\r\ngood\r\ngot\r\ngreat\r\nhad\r\nhadn\'t\r\nhas\r\nhasn\'t\r\nhave\r\nhaven\'t\r\nhaver\r\nhaving\r\nhe\r\nhe\'d\r\nhe\'ll\r\nhe\'s\r\nhelp\r\nher\r\nhere\r\nhere\'s\r\nhers\r\nherself\r\nhigh\r\nhim\r\nhimself\r\nhis\r\nhow\r\nhow\'s\r\ni\r\ni\'d\r\ni\'ll\r\ni\'m\r\ni\'ve\r\nif\r\nin\r\ninto\r\nis\r\nisn\'t\r\nit\r\nit\'s\r\nits\r\nitself\r\njust\r\nless\r\nlet\'s\r\nlike\r\nlong\r\nlook\r\nlove\r\nmake\r\nmany\r\nmatt\r\nmatter\r\nmay\r\nme\r\nmore\r\nmost\r\nmuch\r\nmustn\'t\r\nmy\r\nmyself\r\nnever\r\nnew\r\nnine\r\nno\r\nnor\r\nnot\r\nnow\r\nof\r\noff\r\non\r\nonce\r\none\r\nonly\r\nor\r\nother\r\nought\r\nour\r\nours\r\nourselves\r\nout\r\nover\r\noverall\r\nown\r\nper\r\npros\r\nquestion\r\nreview\r\nright\r\nsame\r\nseven\r\nshan\'t\r\nshe\r\nshe\'d\r\nshe\'ll\r\nshe\'s\r\nshock\r\nshocking\r\nshould\r\nshouldn\'t\r\nshow\r\nsimple\r\nsix\r\nso\r\nsome\r\nstart\r\nstill\r\nsuch\r\ntake\r\nten\r\nthan\r\nthat\r\nthat\'s\r\nthe\r\ntheir\r\ntheirs\r\nthem\r\nthemselves\r\nthen\r\nthere\r\nthere\'s\r\nthese\r\nthey\r\nthey\'d\r\nthey\'ll\r\nthey\'re\r\nthey\'ve\r\nthis\r\nthose\r\nthree\r\nthrough\r\nto\r\ntoo\r\ntool\r\ntwo\r\nunder\r\nuntil\r\nup\r\nuse\r\nusing\r\nvery\r\nwant\r\nwas\r\nwasn\'t\r\nwe\r\nwe\'d\r\nwe\'ll\r\nwe\'re\r\nwe\'ve\r\nwere\r\nweren\'t\r\nwhat\r\nwhat\'s\r\nwhen\r\nwhen\'s\r\nwhere\r\nwhere\'s\r\nwhich\r\nwhile\r\nwho\r\nwho\'s\r\nwhom\r\nwhy\r\nwhy\'s\r\nwill\r\nwith\r\nwithin\r\nwithout\r\nwon\'t\r\nwould\r\nwouldn\'t\r\nyou\r\nyou\'d\r\nyou\'ll\r\nyou\'re\r\nyou\'ve\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nzero\'\r\n-','yes'),(17131,'wpil_has_run_initial_scan','1','yes'),(17132,'wpil_site_db_version','1.22','yes'),(17133,'wpil_link_table_is_created','1','yes'),(17134,'wpil_fresh_install','','yes'),(17135,'wpil_install_date','2023-02-16 20:23:49','yes'),(17138,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:39:\"wp-sheet-editor-premium/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.5.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1676579030;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:50:\"/opt/aphex/sites/sadepisaroitaniitynkukkasilla.fi/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:8:\"sdk_path\";s:39:\"wp-sheet-editor-premium/vendor/freemius\";s:7:\"version\";s:5:\"2.5.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1676579030;}}','yes'),(17139,'fs_debug_mode','','yes'),(17140,'fs_accounts','a:7:{s:21:\"id_slug_type_path_map\";a:1:{i:1010;a:3:{s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:11:\"plugin_data\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1676579030;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:13:\"2.25.2-beta.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:9:\"server_ip\";s:9:\"127.0.0.1\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1676733654;s:7:\"version\";s:13:\"2.25.2-beta.1\";}s:15:\"prev_is_premium\";b:1;s:18:\"sticky_optin_added\";b:1;}}s:13:\"file_slug_map\";a:1:{s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";}s:7:\"plugins\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:28:\"WP Sheet Editor - Post Types\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:7:\"version\";s:13:\"2.25.2-beta.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"bf5e3d7f23818661a60dc790f9243e1a\";s:7:\"updates\";a:1:{i:1010;N;}s:13:\"admin_notices\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:1:{s:15:\"connect_account\";a:10:{s:7:\"message\";s:197:\"We made a few tweaks to the plugin, <b><a href=\"https://sadepisaroitaniitynkukkasilla.fi/wp-admin/admin.php?page=vg_sheet_editor_setup\">Opt in to make \"WP Sheet Editor - Post Types\" better!</a></b>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:10:\"update-nag\";s:6:\"sticky\";b:1;s:2:\"id\";s:15:\"connect_account\";s:10:\"manager_id\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:6:\"plugin\";s:28:\"WP Sheet Editor - Post Types\";s:10:\"wp_user_id\";N;s:11:\"dismissible\";b:1;s:4:\"data\";a:0:{}}}}}','yes'),(17141,'vg_sheet_editor','a:8:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:1:{i:0;s:4:\"post\";}s:17:\"be_posts_per_page\";i:20;s:23:\"be_load_items_on_scroll\";i:1;s:19:\"be_fix_columns_left\";i:2;s:22:\"be_posts_per_page_save\";i:4;s:26:\"be_timeout_between_batches\";i:6;s:23:\"be_disable_post_actions\";i:0;}','yes'),(17142,'fs_gdpr','a:1:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}','yes'),(17144,'vgse_columns_visibility','a:0:{}','yes'),(17145,'vgse_columns_visibility_migrated','1','yes'),(17146,'vgse_welcome_redirect','no','yes'),(17147,'vgse_hide_whats_new_2.25.2-beta.1','yes','yes'),(17227,'deepl_plugin_installed','0','yes'),(17228,'wpdeepl_metabox_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(17229,'wpdeepl_metabox_context','side','yes'),(17230,'wpdeepl_metabox_priority','high','yes'),(17231,'wpdeepl_plugin_installed','1','yes'),(17234,'wpdeeplpro_plugin_installed','1','yes'),(17239,'wpil_post_procession','0','yes'),(17243,'user_count','1','no'),(17245,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:6:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.4.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.4.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.4.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.4.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.5\";s:7:\"version\";s:5:\"6.4.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.3.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.3.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.3.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.3.5-new-bundled.zip\";s:7:\"partial\";s:61:\"https://downloads.w.org/release/wordpress-6.3.5-partial-0.zip\";s:8:\"rollback\";s:62:\"https://downloads.w.org/release/wordpress-6.3.5-rollback-0.zip\";}s:7:\"current\";s:5:\"6.3.5\";s:7:\"version\";s:5:\"6.3.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:3:\"6.3\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1732609160;s:15:\"version_checked\";s:3:\"6.3\";s:12:\"translations\";a:0:{}}','no'),(17246,'can_compress_scripts','1','yes'),(17306,'_transient_is_multi_author','0','yes'),(17411,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1715349394','no'),(17412,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(17429,'_transient_timeout_8b1e3755cc8afa50e760aa803ba63ead','1715306662','no'),(17430,'_transient_8b1e3755cc8afa50e760aa803ba63ead','a:6:{s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 09 May 2024 02:04:22 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=utf-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:5:\"ord 2\";}}s:4:\"body\";s:1183:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.13\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.13.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.5.3\",\"requires_php\":false,\"requires_plugins\":[],\"compatibility\":[]}},\"translations\":[]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:23:\"WpOrg\\Requests\\Response\":10:{s:4:\"body\";s:1183:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.13\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.13.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.5.3\",\"requires_php\":false,\"requires_plugins\":[],\"compatibility\":[]}},\"translations\":[]}\";s:3:\"raw\";s:1498:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Thu, 09 May 2024 02:04:22 GMT\r\nContent-Type: application/json; charset=utf-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nVary: Accept-Encoding\r\nAccess-Control-Allow-Origin: *\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Encoding: br\r\nAlt-Svc: h3=\":443\"; ma=86400\r\nX-nc:  ord 2\r\n\r\n{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.13\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.13.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.5.3\",\"requires_php\":false,\"requires_plugins\":[],\"compatibility\":[]}},\"translations\":[]}\";s:7:\"headers\";O:31:\"WpOrg\\Requests\\Response\\Headers\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Thu, 09 May 2024 02:04:22 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=utf-8\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:15:\"x-frame-options\";a:1:{i:0;s:10:\"SAMEORIGIN\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}s:7:\"alt-svc\";a:1:{i:0;s:19:\"h3=\":443\"; ma=86400\";}s:4:\"x-nc\";a:1:{i:0;s:5:\"ord 2\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1000000000000001;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:51:\"https://api.wordpress.org/plugins/update-check/1.1/\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:25:\"WpOrg\\Requests\\Cookie\\Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(17433,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1732609161;s:7:\"checked\";a:7:{s:5:\"colon\";s:5:\"1.1.0\";s:14:\"twentynineteen\";s:3:\"2.1\";s:15:\"twentyseventeen\";s:3:\"2.8\";s:12:\"twentytwenty\";s:3:\"1.8\";s:15:\"twentytwentyone\";s:3:\"1.4\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.5\";}s:8:\"response\";a:7:{s:5:\"colon\";a:6:{s:5:\"theme\";s:5:\"colon\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:35:\"https://wordpress.org/themes/colon/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/colon.1.1.4.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:3:\"5.6\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"3.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.3.0.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"3.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.3.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(17473,'_transient_colon_categories','2','yes'),(17550,'_transient_timeout_957734e58c700578da88f8bd266d5a7e','1732695561','no'),(17551,'_transient_957734e58c700578da88f8bd266d5a7e','a:6:{s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 26 Nov 2024 08:19:21 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=utf-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:5:\"ord 3\";}}s:4:\"body\";s:1183:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.15\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.15.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.7.1\",\"requires_php\":false,\"requires_plugins\":[],\"compatibility\":[]}},\"translations\":[]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:23:\"WpOrg\\Requests\\Response\":10:{s:4:\"body\";s:1183:\"{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.15\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.15.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.7.1\",\"requires_php\":false,\"requires_plugins\":[],\"compatibility\":[]}},\"translations\":[]}\";s:3:\"raw\";s:1498:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Tue, 26 Nov 2024 08:19:21 GMT\r\nContent-Type: application/json; charset=utf-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nVary: Accept-Encoding\r\nAccess-Control-Allow-Origin: *\r\nX-Frame-Options: SAMEORIGIN\r\nContent-Encoding: br\r\nAlt-Svc: h3=\":443\"; ma=86400\r\nX-nc:  ord 3\r\n\r\n{\"plugins\":{\"wp-sheet-editor-premium\\/wp-sheet-editor.php\":{\"id\":\"w.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"slug\":\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\",\"plugin\":\"wp-sheet-editor-premium\\/wp-sheet-editor.php\",\"new_version\":\"2.25.15\",\"url\":\"https:\\/\\/wordpress.org\\/plugins\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/\",\"package\":\"https:\\/\\/downloads.wordpress.org\\/plugin\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages.2.25.15.zip\",\"icons\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-256x256.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/icon-128x128.png?rev=1543619\"},\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-1544x500.png?rev=1543619\",\"1x\":\"https:\\/\\/ps.w.org\\/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\\/assets\\/banner-772x250.png?rev=1543627\"},\"banners_rtl\":[],\"requires\":\"3.6\",\"tested\":\"6.7.1\",\"requires_php\":false,\"requires_plugins\":[],\"compatibility\":[]}},\"translations\":[]}\";s:7:\"headers\";O:31:\"WpOrg\\Requests\\Response\\Headers\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Tue, 26 Nov 2024 08:19:21 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=utf-8\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:15:\"x-frame-options\";a:1:{i:0;s:10:\"SAMEORIGIN\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}s:7:\"alt-svc\";a:1:{i:0;s:19:\"h3=\":443\"; ma=86400\";}s:4:\"x-nc\";a:1:{i:0;s:5:\"ord 3\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1000000000000001;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:51:\"https://api.wordpress.org/plugins/update-check/1.1/\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:25:\"WpOrg\\Requests\\Cookie\\Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(17553,'_site_transient_timeout_theme_roots','1732610961','no'),(17554,'_site_transient_theme_roots','a:7:{s:5:\"colon\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(17603,'_transient_timeout_wpdeepl_cache_all_post_meta_keys','1741686325','no'),(17604,'_transient_wpdeepl_cache_all_post_meta_keys','a:7:{s:10:\"attachment\";a:4:{i:0;s:17:\"_wp_attached_file\";i:1;s:23:\"_wp_attachment_metadata\";i:2;s:28:\"_elementor_source_image_hash\";i:3;s:24:\"_wp_attachment_image_alt\";}s:17:\"elementor_library\";a:10:{i:0;s:20:\"_elementor_edit_mode\";i:1;s:24:\"_elementor_template_type\";i:2;s:18:\"_elementor_version\";i:3;s:17:\"_wp_page_template\";i:4;s:24:\"_elementor_page_settings\";i:5;s:14:\"_elementor_css\";i:6;s:15:\"_elementor_data\";i:7;s:25:\"_elementor_controls_usage\";i:8;s:20:\"envato_tk_source_kit\";i:9;s:22:\"envato_tk_source_index\";}s:16:\"envato_tk_import\";a:4:{i:0;s:18:\"envato_tk_manifest\";i:1;s:21:\"envato_tk_folder_name\";i:2;s:17:\"envato_tk_builder\";i:3;s:30:\"envato_elements_download_event\";}s:13:\"nav_menu_item\";a:8:{i:0;s:15:\"_menu_item_type\";i:1;s:27:\"_menu_item_menu_item_parent\";i:2;s:20:\"_menu_item_object_id\";i:3;s:17:\"_menu_item_object\";i:4;s:17:\"_menu_item_target\";i:5;s:18:\"_menu_item_classes\";i:6;s:14:\"_menu_item_xfn\";i:7;s:14:\"_menu_item_url\";}s:4:\"page\";a:9:{i:0;s:17:\"_wp_page_template\";i:1;s:10:\"_edit_lock\";i:2;s:20:\"_elementor_edit_mode\";i:3;s:24:\"_elementor_template_type\";i:4;s:18:\"_elementor_version\";i:5;s:15:\"_elementor_data\";i:6;s:25:\"_elementor_controls_usage\";i:7;s:14:\"_elementor_css\";i:8;s:13:\"_thumbnail_id\";}s:4:\"post\";a:11:{i:0;s:10:\"_edit_lock\";i:1;s:13:\"_thumbnail_id\";i:2;s:17:\"wpil_sync_report3\";i:3;s:33:\"wpil_links_inbound_internal_count\";i:4;s:38:\"wpil_links_inbound_internal_count_data\";i:5;s:34:\"wpil_links_outbound_internal_count\";i:6;s:39:\"wpil_links_outbound_internal_count_data\";i:7;s:34:\"wpil_links_outbound_external_count\";i:8;s:39:\"wpil_links_outbound_external_count_data\";i:9;s:22:\"wpil_sync_report2_time\";i:10;s:10:\"_edit_last\";}s:8:\"revision\";a:6:{i:0;s:20:\"_elementor_edit_mode\";i:1;s:24:\"_elementor_template_type\";i:2;s:18:\"_elementor_version\";i:3;s:15:\"_elementor_data\";i:4;s:17:\"_wp_page_template\";i:5;s:25:\"_elementor_controls_usage\";}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=853 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (2,3,'_wp_page_template','default'),(3,5,'_edit_lock','1624254897:1'),(7,5,'_elementor_edit_mode','builder'),(8,8,'_elementor_edit_mode','builder'),(9,8,'_elementor_template_type','kit'),(10,8,'_elementor_version','3.1.4'),(11,5,'_elementor_template_type','wp-page'),(12,5,'_elementor_version','3.2.5'),(14,9,'envato_tk_manifest','a:8:{s:16:\"manifest_version\";s:5:\"1.0.9\";s:5:\"title\";s:15:\"Men\'s Cosmetics\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"2.0.1\";s:9:\"templates\";a:10:{i:0;a:7:{s:4:\"name\";s:4:\"Home\";s:10:\"screenshot\";s:20:\"screenshots/home.jpg\";s:6:\"source\";s:52:\"templates/home-24e63ba426744133ef93ee426b113e01.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:0;}s:22:\"elementor_pro_required\";b:0;}i:1;a:8:{s:4:\"name\";s:6:\"Home 2\";s:10:\"screenshot\";s:22:\"screenshots/home-2.jpg\";s:6:\"source\";s:54:\"templates/home-2-53c7ecdb29e202e7f676a40556256365.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:0;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:24;}}}i:2;a:7:{s:4:\"name\";s:12:\"Home 3 (Pro)\";s:10:\"screenshot\";s:27:\"screenshots/home-3-pro-.jpg\";s:6:\"source\";s:58:\"templates/home-3-pro-c081c55254fb0a996d74f6da5f7b0083.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:1;}s:22:\"elementor_pro_required\";b:1;}i:3;a:7:{s:4:\"name\";s:8:\"Products\";s:10:\"screenshot\";s:24:\"screenshots/products.jpg\";s:6:\"source\";s:56:\"templates/products-4e4e85c0e0ddfac40bdb5193aad493c5.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:0;}s:22:\"elementor_pro_required\";b:0;}i:4;a:7:{s:4:\"name\";s:16:\"Products 2 (Pro)\";s:10:\"screenshot\";s:31:\"screenshots/products-2-pro-.jpg\";s:6:\"source\";s:62:\"templates/products-2-pro-6175f9e70e41005376c2b95e4ad7d48c.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:1;}s:22:\"elementor_pro_required\";b:1;}i:5;a:7:{s:4:\"name\";s:15:\"Products Single\";s:10:\"screenshot\";s:31:\"screenshots/products-single.jpg\";s:6:\"source\";s:63:\"templates/products-single-9d66ae18d183a0ac60907bf0a25d8e32.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:0;}s:22:\"elementor_pro_required\";b:0;}i:6;a:7:{s:4:\"name\";s:18:\"Subscription (Pro)\";s:10:\"screenshot\";s:33:\"screenshots/subscription-pro-.jpg\";s:6:\"source\";s:64:\"templates/subscription-pro-fe22cce2b2afb6f41367d99fb5537589.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:1;}s:22:\"elementor_pro_required\";b:1;}i:7;a:7:{s:4:\"name\";s:5:\"About\";s:10:\"screenshot\";s:21:\"screenshots/about.jpg\";s:6:\"source\";s:53:\"templates/about-123ad465bf056a76f1fec33284164ca7.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:0;}s:22:\"elementor_pro_required\";b:0;}i:8;a:7:{s:4:\"name\";s:7:\"Contact\";s:10:\"screenshot\";s:23:\"screenshots/contact.jpg\";s:6:\"source\";s:55:\"templates/contact-d7c355890c9ef51f721b39bf823d0bad.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:0;}s:22:\"elementor_pro_required\";b:0;}i:9;a:7:{s:4:\"name\";s:13:\"Contact (Pro)\";s:10:\"screenshot\";s:28:\"screenshots/contact-pro-.jpg\";s:6:\"source\";s:59:\"templates/contact-pro-248a0ff7e4b3572b99326104d629ee18.json\";s:11:\"preview_url\";b:0;s:4:\"type\";s:7:\"section\";s:8:\"metadata\";a:2:{s:13:\"template_type\";s:7:\"section\";s:22:\"elementor_pro_required\";b:1;}s:22:\"elementor_pro_required\";b:1;}}s:16:\"required_plugins\";a:2:{i:0;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:5:\"2.9.6\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}i:1;a:4:{s:4:\"name\";s:13:\"Elementor Pro\";s:7:\"version\";s:5:\"2.9.6\";s:4:\"file\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"author\";s:13:\"Elementor.com\";}}s:12:\"required_css\";a:0:{}s:6:\"images\";a:0:{}}'),(15,9,'envato_tk_folder_name','dd2369ba62dcab0b73fc5f40a9f55914'),(16,9,'envato_tk_builder','elementor'),(17,9,'envato_elements_download_event','194-3-211ac0dc7c0f657c0016e32ce9058377'),(18,10,'_wp_attached_file','2021/04/pexels-photo-3031397.jpeg'),(19,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:33:\"2021/04/pexels-photo-3031397.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"pexels-photo-3031397-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"pexels-photo-3031397-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-3031397-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"pexels-photo-3031397-768x1152.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:33:\"pexels-photo-3031397-765x500.jpeg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:33:\"pexels-photo-3031397-150x100.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20,10,'_elementor_source_image_hash','5f98a2b9173e3701a0ba5350cebca763965864cf'),(21,11,'_wp_attached_file','2021/04/bg.png'),(22,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:46;s:6:\"height\";i:29;s:4:\"file\";s:14:\"2021/04/bg.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23,11,'_elementor_source_image_hash','431c5b8342fccee2882ba334fad0e8fdd9ea0627'),(24,12,'_wp_attached_file','2021/04/prod-5.png'),(25,12,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2021/04/prod-5.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"prod-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"prod-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:18:\"prod-5-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26,12,'_elementor_source_image_hash','03f630efa49f7d9e6eed658839541298c25ed975'),(27,13,'_wp_attached_file','2021/04/pexels-photo-3031395.jpeg'),(28,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:33:\"2021/04/pexels-photo-3031395.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"pexels-photo-3031395-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"pexels-photo-3031395-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"pexels-photo-3031395-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"pexels-photo-3031395-768x1152.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:33:\"pexels-photo-3031395-765x500.jpeg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:33:\"pexels-photo-3031395-150x100.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29,13,'_elementor_source_image_hash','09a528253b582dda83e93e90be23315a87f45dbd'),(30,14,'_wp_attached_file','2021/04/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg'),(31,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:53:\"2021/04/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"evan-dvorkin-FLhnC9S_UE8-unsplash-gallery-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"evan-dvorkin-FLhnC9S_UE8-unsplash-gallery-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"evan-dvorkin-FLhnC9S_UE8-unsplash-gallery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"evan-dvorkin-FLhnC9S_UE8-unsplash-gallery-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"evan-dvorkin-FLhnC9S_UE8-unsplash-gallery-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:53:\"evan-dvorkin-FLhnC9S_UE8-unsplash-gallery-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:53:\"evan-dvorkin-FLhnC9S_UE8-unsplash-gallery-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(32,14,'_elementor_source_image_hash','31b3be8a8243bd79db278e4677f5580bb99632b8'),(33,15,'_wp_attached_file','2021/04/prod-4.png'),(34,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2021/04/prod-4.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"prod-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"prod-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:18:\"prod-4-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(35,15,'_elementor_source_image_hash','c1c6c76ccc0d8c8ff15bd8adb9548ff3338daf6f'),(36,16,'_wp_attached_file','2021/04/prod-6.png'),(37,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2021/04/prod-6.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"prod-6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"prod-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:18:\"prod-6-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(38,16,'_elementor_source_image_hash','36ef2ef03e3514b819a875c414ff4153151c38bb'),(39,17,'_wp_attached_file','2021/04/prod-8.png'),(40,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2021/04/prod-8.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"prod-8-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"prod-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:18:\"prod-8-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(41,17,'_elementor_source_image_hash','df3c702f2e7c1448be772b547cfb7596f65afb85'),(42,18,'_wp_attached_file','2021/04/prod-10.png'),(43,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2021/04/prod-10.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"prod-10-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"prod-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:19:\"prod-10-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(44,18,'_elementor_source_image_hash','6568226ef5bf7e47d8e0df5dd1286ed881ff7ca8'),(45,19,'_wp_attached_file','2021/04/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg'),(46,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:53:\"2021/04/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"jens-lindner-dP6g1YJWQcA-unsplash-gallery-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"jens-lindner-dP6g1YJWQcA-unsplash-gallery-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"jens-lindner-dP6g1YJWQcA-unsplash-gallery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"jens-lindner-dP6g1YJWQcA-unsplash-gallery-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"jens-lindner-dP6g1YJWQcA-unsplash-gallery-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:53:\"jens-lindner-dP6g1YJWQcA-unsplash-gallery-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:53:\"jens-lindner-dP6g1YJWQcA-unsplash-gallery-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(47,19,'_elementor_source_image_hash','28845189365b398ab5e3fcffd9a24e8710556cee'),(48,20,'_wp_attached_file','2021/04/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg'),(49,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:45:\"2021/04/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"sylvia-prats-KBB4Vt3yFgU-unsplash-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"sylvia-prats-KBB4Vt3yFgU-unsplash-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"sylvia-prats-KBB4Vt3yFgU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"sylvia-prats-KBB4Vt3yFgU-unsplash-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"sylvia-prats-KBB4Vt3yFgU-unsplash-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:45:\"sylvia-prats-KBB4Vt3yFgU-unsplash-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:45:\"sylvia-prats-KBB4Vt3yFgU-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(50,20,'_elementor_source_image_hash','ac25600cf7c8a57e4d808addee9dccdca31d41d5'),(51,21,'_wp_attached_file','2021/04/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg'),(52,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:52:\"2021/04/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"albert-dera-le-Y0K_q1TY-unsplash-gallery-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"albert-dera-le-Y0K_q1TY-unsplash-gallery-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"albert-dera-le-Y0K_q1TY-unsplash-gallery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"albert-dera-le-Y0K_q1TY-unsplash-gallery-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"albert-dera-le-Y0K_q1TY-unsplash-gallery-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:52:\"albert-dera-le-Y0K_q1TY-unsplash-gallery-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:52:\"albert-dera-le-Y0K_q1TY-unsplash-gallery-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(53,21,'_elementor_source_image_hash','fd2b514462e3e8421e459ed76dbe385a7981063b'),(54,22,'_wp_attached_file','2021/04/prod-11.png'),(55,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2021/04/prod-11.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"prod-11-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"prod-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:19:\"prod-11-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:19:\"prod-11-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56,22,'_elementor_source_image_hash','c9090bbec8673505936989fd6c1df10a749116e8'),(57,23,'_wp_attached_file','2021/04/placeholder.png'),(58,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2021/04/placeholder.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:23:\"placeholder-765x500.png\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59,23,'_elementor_source_image_hash','5090cebc2504609609e6bc062c6da1a109bb33c5'),(60,24,'_elementor_edit_mode','builder'),(61,24,'_elementor_template_type','section'),(62,24,'_elementor_version','3.1.4'),(63,24,'_elementor_data','[{\"id\":\"77095fb8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50cd51e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5110229f\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77d2a20c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b0a8416\",\"elType\":\"widget\",\"settings\":{\"title\":\"men\'s\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e43a17a\",\"elType\":\"widget\",\"settings\":{\"title\":\"cosmetics\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"429f5de9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e90172c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37db7b0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"HEALTH & COSMETICS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47c59086\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"9d87bf7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"492e3762\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a54c0c9\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5bee7e46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"411bd2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"712c78ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6eb240e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d9e6ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46974e18\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76cd46b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e64fcd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26c57804\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48584132\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e693108\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a9dd2c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6890bd83\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56e4ff49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14cc3e4b\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6819b264\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dd10d16\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79f8dc4c\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"51de4172\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f03af6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72b4aa86\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c26086f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"585b4301\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68d628f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6c49ee53\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a11b7be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b24087c\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"572126d2\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c792beb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57ea516f\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"10ac0d58\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246e4832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1361ed83\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32cebcd6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"471d6c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1efa7065\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dceb224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91743fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a8c2969\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39a97d8a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35a33b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d63968e\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fa23f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76596e78\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3750e4a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"38316ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"409f577c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1d340144\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5210ae79\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21db116a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f54a0af\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fb6aa1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30db4eb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"51dc709e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a69ec4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ae39c63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"458030ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53b88930\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18f570e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52487e1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"464c49e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"811334f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5283fbdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53ec512a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c5a3ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fb1311d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77faf17f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ef72411\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"249bf2e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"12d33642\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73bd50c3\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2bd0bd22\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15bc2c93\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40c150d0\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d97ae3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37c82e0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"150b1dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2aa79b5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"570e75a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"763e9b79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30444b69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a08dea8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a4939b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15eb412f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"24fa5dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"514676ec\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ea7ef6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"754310a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636494c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6213889a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"699f11cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44085ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"162e5b6f\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2914f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39aed57f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"307ef859\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c26c90a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8143431\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5828574\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c884edc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a574370\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17bf7281\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b15f360\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"75deb7e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"269a9fea\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1839f0c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8b47ee6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39645c91\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26c42075\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"256930aa\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b75739e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49e2e19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"52d73990\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26d9fe3f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7915b5d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50809ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6a80192c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b11839\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e81421\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4196930\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1218db26\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"581c7a7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"241e1818\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12829d59\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3234efcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"631b04bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d75d802\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f0ce696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40221d02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f1f6be6\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73d6f8a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6180c266\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72557aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28b5e7f0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"583f9f59\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"388ff3fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47e90fd2\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38c75212\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34506abe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a65720b\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33c960ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5636c0df\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1115eedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"661cdcf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17f62922\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e3469e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79588d8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79512211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10b78052\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2643279c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5338f0a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d7bfad5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b33cc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11b149b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12b809bc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42d114d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d1db78e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9ad88ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"113ffcde\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7efb2ac5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3814f38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b9db20c\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4960d7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d5c70c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5df126d5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29297e87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d82bb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"144d14b5\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(64,25,'_elementor_edit_mode','builder'),(65,25,'_elementor_template_type','section'),(66,25,'_elementor_version','3.1.4'),(67,25,'_elementor_data','[{\"id\":\"77095fb8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50cd51e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5110229f\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77d2a20c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b0a8416\",\"elType\":\"widget\",\"settings\":{\"title\":\"men\'s\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e43a17a\",\"elType\":\"widget\",\"settings\":{\"title\":\"cosmetics\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"429f5de9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e90172c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37db7b0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"HEALTH & COSMETICS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47c59086\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"9d87bf7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"492e3762\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a54c0c9\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5bee7e46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"411bd2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"712c78ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6eb240e7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d9e6ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46974e18\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76cd46b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e64fcd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26c57804\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48584132\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e693108\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a9dd2c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6890bd83\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56e4ff49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14cc3e4b\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6819b264\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dd10d16\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79f8dc4c\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"51de4172\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f03af6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72b4aa86\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c26086f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"585b4301\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68d628f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6c49ee53\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a11b7be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b24087c\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"572126d2\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c792beb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57ea516f\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"10ac0d58\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"246e4832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1361ed83\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32cebcd6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"471d6c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1efa7065\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dceb224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"91743fc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a8c2969\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39a97d8a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35a33b55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d63968e\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fa23f2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76596e78\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3750e4a7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"38316ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"409f577c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1d340144\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5210ae79\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21db116a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f54a0af\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fb6aa1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30db4eb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"51dc709e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a69ec4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ae39c63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"458030ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53b88930\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18f570e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52487e1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"464c49e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"811334f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5283fbdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53ec512a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c5a3ee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fb1311d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"77faf17f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ef72411\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"249bf2e5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"12d33642\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73bd50c3\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2bd0bd22\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15bc2c93\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40c150d0\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d97ae3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37c82e0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"150b1dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2aa79b5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"570e75a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"763e9b79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30444b69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a08dea8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a4939b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15eb412f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"24fa5dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"514676ec\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ea7ef6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"754310a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636494c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6213889a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"699f11cf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44085ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"162e5b6f\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2914f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39aed57f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"307ef859\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c26c90a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8143431\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5828574\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c884edc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a574370\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17bf7281\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b15f360\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"75deb7e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"269a9fea\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1839f0c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8b47ee6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39645c91\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26c42075\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"256930aa\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b75739e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49e2e19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"52d73990\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26d9fe3f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7915b5d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50809ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6a80192c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b11839\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e81421\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4196930\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1218db26\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"581c7a7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"241e1818\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12829d59\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3234efcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"631b04bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d75d802\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f0ce696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40221d02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f1f6be6\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73d6f8a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6180c266\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72557aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28b5e7f0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"583f9f59\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"388ff3fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47e90fd2\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38c75212\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34506abe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a65720b\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33c960ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5636c0df\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1115eedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"661cdcf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17f62922\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e3469e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79588d8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79512211\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10b78052\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2643279c\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5338f0a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d7bfad5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52b33cc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11b149b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12b809bc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42d114d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d1db78e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9ad88ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"113ffcde\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7efb2ac5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3814f38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b9db20c\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4960d7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d5c70c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5df126d5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-wordpress\",\"library\":\"fa-brands\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29297e87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d82bb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"144d14b5\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(68,24,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:31;s:5:\"align\";i:28;s:11:\"header_size\";i:19;s:12:\"align_tablet\";i:12;s:12:\"align_mobile\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:31;s:21:\"typography_typography\";i:31;s:22:\"typography_font_family\";i:31;s:20:\"typography_font_size\";i:31;s:22:\"typography_font_weight\";i:31;s:25:\"typography_text_transform\";i:31;s:25:\"typography_letter_spacing\";i:31;s:27:\"typography_font_size_mobile\";i:31;s:22:\"typography_line_height\";i:12;s:29:\"typography_line_height_mobile\";i:12;s:32:\"typography_letter_spacing_mobile\";i:31;s:27:\"typography_font_size_tablet\";i:12;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:31;s:15:\"_padding_tablet\";i:12;s:7:\"_margin\";i:12;s:14:\"_margin_mobile\";i:20;s:15:\"_padding_mobile\";i:20;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:18;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:59;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:53;s:21:\"space_between_widgets\";i:27;s:16:\"content_position\";i:12;s:5:\"align\";i:7;s:19:\"_inline_size_tablet\";i:26;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:44;s:7:\"padding\";i:49;s:14:\"padding_mobile\";i:14;s:14:\"padding_tablet\";i:18;s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:10;}}s:5:\"style\";a:4:{s:12:\"section_typo\";a:1:{s:10:\"text_align\";i:5;}s:13:\"section_style\";a:9:{s:21:\"background_background\";i:16;s:16:\"background_image\";i:6;s:16:\"background_color\";i:10;s:26:\"background_position_tablet\";i:1;s:17:\"background_repeat\";i:8;s:24:\"background_repeat_tablet\";i:1;s:15:\"background_size\";i:8;s:19:\"background_position\";i:8;s:15:\"background_xpos\";i:1;}s:26:\"section_background_overlay\";a:13:{s:24:\"background_overlay_color\";i:10;s:27:\"background_overlay_position\";i:1;s:34:\"background_overlay_position_tablet\";i:1;s:25:\"background_overlay_repeat\";i:1;s:32:\"background_overlay_repeat_tablet\";i:1;s:23:\"background_overlay_size\";i:1;s:30:\"background_overlay_size_tablet\";i:1;s:34:\"background_overlay_bg_width_tablet\";i:1;s:26:\"background_overlay_opacity\";i:10;s:30:\"background_overlay_size_mobile\";i:1;s:34:\"background_overlay_bg_width_mobile\";i:1;s:29:\"background_overlay_background\";i:9;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:11;s:12:\"border_width\";i:11;s:12:\"border_color\";i:11;s:19:\"border_hover_border\";i:1;s:18:\"border_hover_width\";i:1;s:19:\"border_radius_hover\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:13:\"content_width\";i:12;s:3:\"gap\";i:4;s:13:\"custom_height\";i:6;s:6:\"height\";i:5;s:20:\"custom_height_tablet\";i:4;s:15:\"stretch_section\";i:3;s:16:\"content_position\";i:3;s:12:\"height_inner\";i:5;s:19:\"custom_height_inner\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:7:{s:13:\"margin_mobile\";i:9;s:14:\"padding_mobile\";i:22;s:7:\"padding\";i:31;s:14:\"padding_tablet\";i:17;s:13:\"margin_tablet\";i:6;s:6:\"margin\";i:22;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:3;s:20:\"reverse_order_mobile\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:11:{s:21:\"background_background\";i:14;s:16:\"background_image\";i:4;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:7;s:15:\"background_size\";i:8;s:16:\"background_color\";i:13;s:26:\"background_position_mobile\";i:2;s:22:\"background_size_mobile\";i:2;s:21:\"background_attachment\";i:4;s:25:\"background_video_fallback\";i:3;s:15:\"background_xpos\";i:1;}s:26:\"section_background_overlay\";a:15:{s:24:\"background_overlay_color\";i:5;s:26:\"background_overlay_opacity\";i:8;s:27:\"background_overlay_position\";i:5;s:25:\"background_overlay_repeat\";i:5;s:23:\"background_overlay_size\";i:2;s:16:\"css_filters_blur\";i:2;s:26:\"background_overlay_color_b\";i:4;s:31:\"background_overlay_color_b_stop\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:29:\"background_overlay_background\";i:4;s:22:\"css_filters_brightness\";i:4;s:29:\"background_overlay_color_stop\";i:3;s:32:\"background_overlay_gradient_type\";i:1;s:24:\"background_overlay_image\";i:3;s:20:\"css_filters_saturate\";i:2;}s:21:\"section_shape_divider\";a:7:{s:23:\"shape_divider_top_width\";i:4;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:4;s:26:\"shape_divider_bottom_width\";i:4;s:33:\"shape_divider_bottom_width_mobile\";i:4;s:27:\"shape_divider_bottom_height\";i:4;s:34:\"shape_divider_bottom_height_mobile\";i:4;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:15;s:12:\"border_width\";i:17;s:12:\"border_color\";i:17;s:19:\"border_hover_border\";i:8;s:18:\"border_hover_width\";i:8;s:18:\"border_hover_color\";i:8;s:13:\"border_radius\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:3;s:15:\"hover_animation\";i:3;s:19:\"hover_primary_color\";i:2;}}s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:4:\"link\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:30;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:30;s:5:\"align\";i:30;s:12:\"align_mobile\";i:30;s:12:\"align_tablet\";i:30;s:13:\"selected_icon\";i:30;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:18:{s:21:\"typography_typography\";i:30;s:22:\"typography_font_family\";i:30;s:20:\"typography_font_size\";i:30;s:22:\"typography_font_weight\";i:30;s:25:\"typography_text_transform\";i:30;s:16:\"background_color\";i:30;s:13:\"border_radius\";i:30;s:28:\"button_box_shadow_box_shadow\";i:30;s:12:\"text_padding\";i:30;s:17:\"button_text_color\";i:30;s:15:\"hover_animation\";i:29;s:13:\"border_border\";i:29;s:12:\"border_width\";i:30;s:12:\"border_color\";i:30;s:25:\"typography_letter_spacing\";i:13;s:27:\"typography_font_size_mobile\";i:9;s:11:\"hover_color\";i:6;s:19:\"text_padding_mobile\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:30;s:7:\"_margin\";i:30;s:15:\"_padding_mobile\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:30;s:18:\"animation_duration\";i:30;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:16:\"_offset_x_tablet\";i:1;s:16:\"_offset_x_mobile\";i:1;s:16:\"_offset_y_tablet\";i:1;s:16:\"_offset_y_mobile\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:6;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:3;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_line_height\";i:3;s:25:\"typography_letter_spacing\";i:3;s:12:\"align_tablet\";i:3;s:12:\"align_mobile\";i:3;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:29:\"typography_line_height_mobile\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:22:\"css_filters_css_filter\";i:4;s:22:\"css_filters_brightness\";i:4;s:20:\"css_filters_contrast\";i:4;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;}s:20:\"section_social_hover\";a:1:{s:19:\"hover_primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(69,24,'_wp_page_template','default'),(70,24,'envato_tk_source_kit','9'),(71,24,'envato_tk_source_index','1'),(72,26,'_elementor_edit_mode','builder'),(73,26,'_elementor_template_type','wp-page'),(74,26,'_elementor_version','3.1.4'),(75,27,'_elementor_edit_mode','builder'),(76,27,'_elementor_template_type','wp-page'),(77,27,'_elementor_version','3.1.4'),(78,5,'_wp_page_template','elementor_header_footer'),(79,5,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.810000000000000053290705182007513940334320068359375},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.20000000000000017763568394002504646778106689453125},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.29999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.29999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.20000000000000017763568394002504646778106689453125},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Blog\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001332267629550187848508358001708984375,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.429999999999999993338661852249060757458209991455078125,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.600000000000000088817841970012523233890533447265625,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.309999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.600000000000000088817841970012523233890533447265625,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ffe75c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"afcfed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7edd16b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Kasino- ja muoti-guesthouset - erinomaiset h\\u00e4\\u00e4t<\\/h2><p><br \\/>Ei ole ep\\u00e4ilyst\\u00e4k\\u00e4\\u00e4n siit\\u00e4, ett\\u00e4 jos suunnittelet h\\u00e4\\u00e4t tai muuta erityist\\u00e4 tilaisuutta, sinun kannattaa harkita y\\u00f6pymist\\u00e4 h\\u00e4\\u00e4majassa. N\\u00e4iden vierastalojen tarjoamat palvelut ovat yksinkertaisesti erinomaisia \\u200b\\u200bja tilat, jotka takaavat <a href=\\\"https:\\/\\/kaikkipokerista.com\\/pokerisivustot\\/betsafe\\/\\\">kaikkipokerista.com<\\/a>, ett\\u00e4 vierailusi on mukavaa ja vaivatonta. T\\u00e4llainen guesthouse voi j\\u00e4rjest\\u00e4\\u00e4 kaiken lentokentt\\u00e4kuljetuksista langattomaan internetyhteyteen pelilaitteisiin. On jopa monia, jotka tarjoavat t\\u00e4yden huonepalvelun ja pys\\u00e4k\\u00f6intipalvelun, samalla kun he veloittavat kohtuulliset hinnat palveluistaan. Monissa n\\u00e4ist\\u00e4 lomakohteista on ravintoloita, joten tarjolla on runsaasti ruokapaikkoja.<\\/p><p>Yksi parhaista ominaisuuksista, jotka on tarkistettava ylellisess\\u00e4 all-suite-lomakeskuksessa, on kaapelitelevision saatavuus. Kaapelitelevisio pit\\u00e4\\u00e4 sinut viihdytt\\u00e4v\\u00e4n\\u00e4 ja tarjoaa sinulle kaiken viihteen, jota mahdollisesti tarvitset poissa kotoa ollessasi. Lis\\u00e4ksi monissa n\\u00e4ist\\u00e4 lomakohteista on paikan p\\u00e4\\u00e4ll\\u00e4 oleva kasino, joka tarjoaa sinulle t\\u00e4ydellisen kokemuksen kolikkopelien, crapsien tai blackjackin pelaamisesta.<\\/p><p>Jos etsit paikkaa, jossa voit ruokailla, sinun kannattaa ruokailla kasinolla ja muoti-guesthousessa, koska n\\u00e4m\\u00e4 paikat tarjoavat hienoimpia ruokailumahdollisuuksia kaikkialla. On satoja ravintoloita, joista valita, sek\\u00e4 laaja valikoima ruokia n\\u00e4ytteeksi. N\\u00e4iss\\u00e4 lomakohteissa saamasi ruoan laatu on yksinkertaisesti upeaa. Parempaa ruokailukokemusta on todellakin vaikea l\\u00f6yt\\u00e4\\u00e4 mist\\u00e4\\u00e4n muualta.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(80,28,'_elementor_edit_mode','builder'),(81,28,'_elementor_template_type','wp-page'),(82,28,'_elementor_version','3.1.4'),(83,28,'_wp_page_template','default'),(84,28,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"men\'s\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"cosmetics\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"HEALTH & COSMETICS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(87,29,'_elementor_edit_mode','builder'),(88,29,'_elementor_template_type','wp-page'),(89,29,'_elementor_version','3.1.4'),(90,29,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (91,29,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"men\'s\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"cosmetics\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"HEALTH & COSMETICS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(92,29,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:31;s:5:\"align\";i:28;s:11:\"header_size\";i:19;s:12:\"align_tablet\";i:12;s:12:\"align_mobile\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:31;s:21:\"typography_typography\";i:31;s:22:\"typography_font_family\";i:31;s:20:\"typography_font_size\";i:31;s:22:\"typography_font_weight\";i:31;s:25:\"typography_text_transform\";i:31;s:25:\"typography_letter_spacing\";i:31;s:27:\"typography_font_size_mobile\";i:31;s:22:\"typography_line_height\";i:12;s:29:\"typography_line_height_mobile\";i:12;s:32:\"typography_letter_spacing_mobile\";i:31;s:27:\"typography_font_size_tablet\";i:12;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:31;s:15:\"_padding_tablet\";i:12;s:7:\"_margin\";i:12;s:14:\"_margin_mobile\";i:20;s:15:\"_padding_mobile\";i:20;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:18;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:59;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:53;s:21:\"space_between_widgets\";i:27;s:16:\"content_position\";i:12;s:5:\"align\";i:7;s:19:\"_inline_size_tablet\";i:26;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:44;s:7:\"padding\";i:49;s:14:\"padding_mobile\";i:14;s:14:\"padding_tablet\";i:18;s:13:\"margin_mobile\";i:5;s:13:\"margin_tablet\";i:10;}}s:5:\"style\";a:4:{s:12:\"section_typo\";a:1:{s:10:\"text_align\";i:5;}s:13:\"section_style\";a:9:{s:21:\"background_background\";i:16;s:16:\"background_image\";i:6;s:16:\"background_color\";i:10;s:26:\"background_position_tablet\";i:1;s:17:\"background_repeat\";i:8;s:24:\"background_repeat_tablet\";i:1;s:15:\"background_size\";i:8;s:19:\"background_position\";i:8;s:15:\"background_xpos\";i:1;}s:26:\"section_background_overlay\";a:13:{s:24:\"background_overlay_color\";i:10;s:27:\"background_overlay_position\";i:1;s:34:\"background_overlay_position_tablet\";i:1;s:25:\"background_overlay_repeat\";i:1;s:32:\"background_overlay_repeat_tablet\";i:1;s:23:\"background_overlay_size\";i:1;s:30:\"background_overlay_size_tablet\";i:1;s:34:\"background_overlay_bg_width_tablet\";i:1;s:26:\"background_overlay_opacity\";i:10;s:30:\"background_overlay_size_mobile\";i:1;s:34:\"background_overlay_bg_width_mobile\";i:1;s:29:\"background_overlay_background\";i:9;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:11;s:12:\"border_width\";i:11;s:12:\"border_color\";i:11;s:19:\"border_hover_border\";i:1;s:18:\"border_hover_width\";i:1;s:19:\"border_radius_hover\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:13:\"content_width\";i:12;s:3:\"gap\";i:4;s:13:\"custom_height\";i:6;s:6:\"height\";i:5;s:20:\"custom_height_tablet\";i:4;s:15:\"stretch_section\";i:3;s:16:\"content_position\";i:3;s:12:\"height_inner\";i:5;s:19:\"custom_height_inner\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:7:{s:13:\"margin_mobile\";i:9;s:14:\"padding_mobile\";i:22;s:7:\"padding\";i:31;s:14:\"padding_tablet\";i:17;s:13:\"margin_tablet\";i:6;s:6:\"margin\";i:22;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:3;s:20:\"reverse_order_mobile\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:11:{s:21:\"background_background\";i:14;s:16:\"background_image\";i:4;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:7;s:15:\"background_size\";i:8;s:16:\"background_color\";i:13;s:26:\"background_position_mobile\";i:2;s:22:\"background_size_mobile\";i:2;s:21:\"background_attachment\";i:4;s:25:\"background_video_fallback\";i:3;s:15:\"background_xpos\";i:1;}s:26:\"section_background_overlay\";a:15:{s:24:\"background_overlay_color\";i:5;s:26:\"background_overlay_opacity\";i:8;s:27:\"background_overlay_position\";i:5;s:25:\"background_overlay_repeat\";i:5;s:23:\"background_overlay_size\";i:2;s:16:\"css_filters_blur\";i:2;s:26:\"background_overlay_color_b\";i:4;s:31:\"background_overlay_color_b_stop\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:29:\"background_overlay_background\";i:4;s:22:\"css_filters_brightness\";i:4;s:29:\"background_overlay_color_stop\";i:3;s:32:\"background_overlay_gradient_type\";i:1;s:24:\"background_overlay_image\";i:3;s:20:\"css_filters_saturate\";i:2;}s:21:\"section_shape_divider\";a:7:{s:23:\"shape_divider_top_width\";i:4;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:4;s:26:\"shape_divider_bottom_width\";i:4;s:33:\"shape_divider_bottom_width_mobile\";i:4;s:27:\"shape_divider_bottom_height\";i:4;s:34:\"shape_divider_bottom_height_mobile\";i:4;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:15;s:12:\"border_width\";i:17;s:12:\"border_color\";i:17;s:19:\"border_hover_border\";i:8;s:18:\"border_hover_width\";i:8;s:18:\"border_hover_color\";i:8;s:13:\"border_radius\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:3;s:15:\"hover_animation\";i:3;s:19:\"hover_primary_color\";i:2;}}s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:4:\"link\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:30;s:15:\"control_percent\";i:10;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:30;s:5:\"align\";i:30;s:12:\"align_mobile\";i:30;s:12:\"align_tablet\";i:30;s:13:\"selected_icon\";i:30;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:18:{s:21:\"typography_typography\";i:30;s:22:\"typography_font_family\";i:30;s:20:\"typography_font_size\";i:30;s:22:\"typography_font_weight\";i:30;s:25:\"typography_text_transform\";i:30;s:16:\"background_color\";i:30;s:13:\"border_radius\";i:30;s:28:\"button_box_shadow_box_shadow\";i:30;s:12:\"text_padding\";i:30;s:17:\"button_text_color\";i:30;s:15:\"hover_animation\";i:29;s:13:\"border_border\";i:29;s:12:\"border_width\";i:30;s:12:\"border_color\";i:30;s:25:\"typography_letter_spacing\";i:13;s:27:\"typography_font_size_mobile\";i:9;s:11:\"hover_color\";i:6;s:19:\"text_padding_mobile\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:30;s:7:\"_margin\";i:30;s:15:\"_padding_mobile\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:30;s:18:\"animation_duration\";i:30;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:16:\"_offset_x_tablet\";i:1;s:16:\"_offset_x_mobile\";i:1;s:16:\"_offset_y_tablet\";i:1;s:16:\"_offset_y_mobile\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:6;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:3;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_line_height\";i:3;s:25:\"typography_letter_spacing\";i:3;s:12:\"align_tablet\";i:3;s:12:\"align_mobile\";i:3;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:3;s:29:\"typography_line_height_mobile\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:22:\"css_filters_css_filter\";i:4;s:22:\"css_filters_brightness\";i:4;s:20:\"css_filters_contrast\";i:4;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;}s:20:\"section_social_hover\";a:1:{s:19:\"hover_primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(94,30,'_edit_lock','1618459387:1'),(96,32,'_elementor_edit_mode','builder'),(97,32,'_elementor_template_type','wp-page'),(98,32,'_elementor_version','3.1.4'),(99,32,'_wp_page_template','elementor_header_footer'),(100,32,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"men\'s\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"cosmetics\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"HEALTH & COSMETICS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(102,33,'_elementor_edit_mode','builder'),(103,33,'_elementor_template_type','wp-page'),(104,33,'_elementor_version','3.1.4'),(105,33,'_wp_page_template','elementor_header_footer'),(106,33,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"men\'s\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"cosmetics\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"HEALTH & COSMETICS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(108,34,'_elementor_edit_mode','builder'),(109,34,'_elementor_template_type','wp-page'),(110,34,'_elementor_version','3.1.4'),(111,34,'_wp_page_template','elementor_header_footer'),(112,34,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(115,35,'_wp_attached_file','2021/04/madhen-1773911_1920.jpg'),(116,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2021/04/madhen-1773911_1920.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"madhen-1773911_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"madhen-1773911_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"madhen-1773911_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"madhen-1773911_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"madhen-1773911_1920-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:31:\"madhen-1773911_1920-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:31:\"madhen-1773911_1920-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(123,37,'_elementor_edit_mode','builder'),(124,37,'_elementor_template_type','wp-page'),(125,37,'_elementor_version','3.1.4'),(126,37,'_wp_page_template','elementor_header_footer'),(127,37,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(128,38,'_elementor_edit_mode','builder'),(129,38,'_elementor_template_type','wp-page'),(130,38,'_elementor_version','3.1.4'),(131,38,'_wp_page_template','elementor_header_footer'),(132,38,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":\"10\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031397.jpeg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(133,39,'_elementor_edit_mode','builder'),(134,39,'_elementor_template_type','wp-page'),(135,39,'_elementor_version','3.1.4'),(136,39,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (137,39,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(145,41,'_elementor_edit_mode','builder'),(146,41,'_elementor_template_type','wp-page'),(147,41,'_elementor_version','3.1.4'),(148,41,'_wp_page_template','elementor_header_footer'),(149,41,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(150,42,'_elementor_edit_mode','builder'),(151,42,'_elementor_template_type','wp-page'),(152,42,'_elementor_version','3.1.4'),(153,42,'_wp_page_template','elementor_header_footer'),(154,42,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"60f92701\",\"elType\":\"widget\",\"settings\":{\"title\":\"BATH & SHOWER KITS\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(155,43,'_elementor_edit_mode','builder'),(156,43,'_elementor_template_type','wp-page'),(157,43,'_elementor_version','3.1.4'),(158,43,'_wp_page_template','elementor_header_footer'),(159,43,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(167,45,'_elementor_edit_mode','builder'),(168,45,'_elementor_template_type','wp-page'),(169,45,'_elementor_version','3.1.4'),(170,45,'_wp_page_template','elementor_header_footer'),(171,45,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(172,46,'_elementor_edit_mode','builder'),(173,46,'_elementor_template_type','wp-page'),(174,46,'_elementor_version','3.1.4'),(175,46,'_wp_page_template','elementor_header_footer'),(176,46,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f03c6a8\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"780ec59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b67d4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"55ef1461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b6e739e\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3916a0dd\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"7bc01e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73481ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"682fc983\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c9f556d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6c5542ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"6602a5ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-8.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f98792d\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"2f8b7d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"70f0c538\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"690d97b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f675676\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"27389c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32afbe4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-10.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c246dd5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(30,30,30,0)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0.5\",\"bottom\":\"0.5\",\"left\":\"0.5\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"1c7a4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"602f7809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"164bba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f56ce8\",\"elType\":\"widget\",\"settings\":{\"text\":\"ORDER\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(177,47,'_elementor_edit_mode','builder'),(178,47,'_elementor_template_type','wp-page'),(179,47,'_elementor_version','3.1.4'),(180,47,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (181,47,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(183,48,'_elementor_edit_mode','builder'),(184,48,'_elementor_template_type','wp-page'),(185,48,'_elementor_version','3.1.4'),(186,48,'_wp_page_template','elementor_header_footer'),(187,48,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(188,49,'_elementor_edit_mode','builder'),(189,49,'_elementor_template_type','wp-page'),(190,49,'_elementor_version','3.1.4'),(191,49,'_wp_page_template','elementor_header_footer'),(192,49,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(193,50,'_elementor_edit_mode','builder'),(194,50,'_elementor_template_type','wp-page'),(195,50,'_elementor_version','3.1.4'),(196,50,'_wp_page_template','elementor_header_footer'),(197,50,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(199,51,'_wp_attached_file','2021/04/girls-1828539_1920.jpg'),(200,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2021/04/girls-1828539_1920.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"girls-1828539_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"girls-1828539_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"girls-1828539_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"girls-1828539_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"girls-1828539_1920-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:30:\"girls-1828539_1920-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:30:\"girls-1828539_1920-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 70D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(201,52,'_elementor_edit_mode','builder'),(202,52,'_elementor_template_type','wp-page'),(203,52,'_elementor_version','3.1.4'),(204,52,'_wp_page_template','elementor_header_footer'),(205,52,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(206,53,'_elementor_edit_mode','builder'),(207,53,'_elementor_template_type','wp-page'),(208,53,'_elementor_version','3.1.4'),(209,53,'_wp_page_template','elementor_header_footer'),(210,53,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"12\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-5.png\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"432017d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"53600362\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"e3c3751\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d5d29ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"13\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/pexels-photo-3031395.jpeg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.54000000000000004,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a94df0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23c3be60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shave &amp; SkinCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67bbb208\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f0bf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"4a6f1193\",\"elType\":\"widget\",\"settings\":{\"title\":\"new skin & hair care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b76c727\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ac343ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"491f6ff5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6897fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"background_color\":\"#424242\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_position\":\"center center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"73ebdf8e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":181,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7d51795f\",\"elType\":\"widget\",\"settings\":{\"title\":\"beard &amp; hairCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b9ebfab\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b410a0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"55a6fd01\",\"elType\":\"widget\",\"settings\":{\"title\":\"new HAIR & SKIN care\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ee8b4fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"for men\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1378dc\",\"elType\":\"widget\",\"settings\":{\"text\":\"VIEW PRODUCTS\",\"align\":\"right\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6870b42c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(211,54,'_elementor_edit_mode','builder'),(212,54,'_elementor_template_type','wp-page'),(213,54,'_elementor_version','3.1.4'),(214,54,'_wp_page_template','elementor_header_footer'),(215,54,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(217,55,'_wp_attached_file','2021/04/woman-1536747_1920.jpg'),(218,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1272;s:4:\"file\";s:30:\"2021/04/woman-1536747_1920.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"woman-1536747_1920-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"woman-1536747_1920-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"woman-1536747_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"woman-1536747_1920-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"woman-1536747_1920-1536x1018.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1018;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:30:\"woman-1536747_1920-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:30:\"woman-1536747_1920-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D90\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(219,56,'_wp_attached_file','2021/04/girl-996450_1920.jpg'),(220,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:28:\"2021/04/girl-996450_1920.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"girl-996450_1920-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"girl-996450_1920-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"girl-996450_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"girl-996450_1920-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"girl-996450_1920-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:28:\"girl-996450_1920-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:28:\"girl-996450_1920-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(221,57,'_elementor_edit_mode','builder'),(222,57,'_elementor_template_type','wp-page'),(223,57,'_elementor_version','3.1.4'),(224,57,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (225,57,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(226,58,'_elementor_edit_mode','builder'),(227,58,'_elementor_template_type','wp-page'),(228,58,'_elementor_version','3.1.4'),(229,58,'_wp_page_template','elementor_header_footer'),(230,58,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"rgba(12,12,12,0.68)\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-4.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.71)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(231,59,'_elementor_edit_mode','builder'),(232,59,'_elementor_template_type','wp-page'),(233,59,'_elementor_version','3.1.4'),(234,59,'_wp_page_template','elementor_header_footer'),(235,59,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(237,60,'_wp_attached_file','2021/04/womens-1594288_1920.jpg'),(238,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2021/04/womens-1594288_1920.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"womens-1594288_1920-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"womens-1594288_1920-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"womens-1594288_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"womens-1594288_1920-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"womens-1594288_1920-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:31:\"womens-1594288_1920-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:31:\"womens-1594288_1920-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(239,61,'_elementor_edit_mode','builder'),(240,61,'_elementor_template_type','wp-page'),(241,61,'_elementor_version','3.1.4'),(242,61,'_wp_page_template','elementor_header_footer'),(243,61,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(244,62,'_elementor_edit_mode','builder'),(245,62,'_elementor_template_type','wp-page'),(246,62,'_elementor_version','3.1.4'),(247,62,'_wp_page_template','elementor_header_footer'),(248,62,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-6.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(249,63,'_elementor_edit_mode','builder'),(250,63,'_elementor_template_type','wp-page'),(251,63,'_elementor_version','3.1.4'),(252,63,'_wp_page_template','elementor_header_footer'),(253,63,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(255,64,'_elementor_edit_mode','builder'),(256,64,'_elementor_template_type','wp-page'),(257,64,'_elementor_version','3.1.4'),(258,64,'_wp_page_template','elementor_header_footer'),(259,64,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(260,65,'_elementor_edit_mode','builder'),(261,65,'_elementor_template_type','wp-page'),(262,65,'_elementor_version','3.1.4'),(263,65,'_wp_page_template','elementor_header_footer'),(264,65,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\"Details\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(265,66,'_elementor_edit_mode','builder'),(266,66,'_elementor_template_type','wp-page'),(267,66,'_elementor_version','3.1.4'),(268,66,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (269,66,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(271,67,'_elementor_edit_mode','builder'),(272,67,'_elementor_template_type','wp-page'),(273,67,'_elementor_version','3.1.4'),(274,67,'_wp_page_template','elementor_header_footer'),(275,67,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(276,68,'_elementor_edit_mode','builder'),(277,68,'_elementor_template_type','wp-page'),(278,68,'_elementor_version','3.1.4'),(279,68,'_wp_page_template','elementor_header_footer'),(280,68,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(281,69,'_elementor_edit_mode','builder'),(282,69,'_elementor_template_type','wp-page'),(283,69,'_elementor_version','3.1.4'),(284,69,'_wp_page_template','elementor_header_footer'),(285,69,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(287,70,'_elementor_edit_mode','builder'),(288,70,'_elementor_template_type','wp-page'),(289,70,'_elementor_version','3.1.4'),(290,70,'_wp_page_template','elementor_header_footer'),(291,70,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(292,71,'_elementor_edit_mode','builder'),(293,71,'_elementor_template_type','wp-page'),(294,71,'_elementor_version','3.1.4'),(295,71,'_wp_page_template','elementor_header_footer'),(296,71,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"SKINCARE &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kit\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\"SHOP ONLINE\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"rewards\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2807f304\",\"elType\":\"widget\",\"settings\":{\"text\":\"see points\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-credit-card\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"border_border\":\"solid\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"far fa-credit-card\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"BIG SAVINGS\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ae53d15\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#ed7a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(297,72,'_elementor_edit_mode','builder'),(298,72,'_elementor_template_type','wp-page'),(299,72,'_elementor_version','3.1.4'),(300,72,'_wp_page_template','elementor_header_footer'),(301,72,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(303,73,'_elementor_edit_mode','builder'),(304,73,'_elementor_template_type','wp-page'),(305,73,'_elementor_version','3.1.4'),(306,73,'_wp_page_template','elementor_header_footer'),(307,73,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(308,74,'_elementor_edit_mode','builder'),(309,74,'_elementor_template_type','wp-page'),(310,74,'_elementor_version','3.1.4'),(311,74,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (312,74,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\"skincare range\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\"wet shaving kits\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\"electric razors\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\"haircare & gels\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\"personal hygiene\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"gym & travel - sale\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\"diet & detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\"seasonal sale live\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(313,75,'_elementor_edit_mode','builder'),(314,75,'_elementor_template_type','wp-page'),(315,75,'_elementor_version','3.1.4'),(316,75,'_wp_page_template','elementor_header_footer'),(317,75,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(319,76,'_elementor_edit_mode','builder'),(320,76,'_elementor_template_type','wp-page'),(321,76,'_elementor_version','3.1.4'),(322,76,'_wp_page_template','elementor_header_footer'),(323,76,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(324,77,'_elementor_edit_mode','builder'),(325,77,'_elementor_template_type','wp-page'),(326,77,'_elementor_version','3.1.4'),(327,77,'_wp_page_template','elementor_header_footer'),(328,77,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"SAVE 20% fall SALE!\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(329,78,'_elementor_edit_mode','builder'),(330,78,'_elementor_template_type','wp-page'),(331,78,'_elementor_version','3.1.4'),(332,78,'_wp_page_template','elementor_header_footer'),(333,78,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(335,79,'_elementor_edit_mode','builder'),(336,79,'_elementor_template_type','wp-page'),(337,79,'_elementor_version','3.1.4'),(338,79,'_wp_page_template','elementor_header_footer'),(339,79,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(340,80,'_elementor_edit_mode','builder'),(341,80,'_elementor_template_type','wp-page'),(342,80,'_elementor_version','3.1.4'),(343,80,'_wp_page_template','elementor_header_footer'),(344,80,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"ELECTRIC RAZORS &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"SHAVING kitS\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(345,81,'_elementor_edit_mode','builder'),(346,81,'_elementor_template_type','wp-page'),(347,81,'_elementor_version','3.1.4'),(348,81,'_wp_page_template','elementor_header_footer'),(349,81,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hey Everyone,\\u00a0<\\/p><p>Thanks for taking time in visitng my website! I\'m Jenni a\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(351,82,'_elementor_edit_mode','builder'),(352,82,'_elementor_template_type','wp-page'),(353,82,'_elementor_version','3.1.4'),(354,82,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (355,82,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hey Everyone,\\u00a0<\\/p><p>Thanks for taking time in visitng my website! I\'m Jenni a\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(356,83,'_elementor_edit_mode','builder'),(357,83,'_elementor_template_type','wp-page'),(358,83,'_elementor_version','3.1.4'),(359,83,'_wp_page_template','elementor_header_footer'),(360,83,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hey Everyone,\\u00a0<\\/p><p>Thanks for taking time in visitng my website! I\'m Jenni a\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(361,84,'_elementor_edit_mode','builder'),(362,84,'_elementor_template_type','wp-page'),(363,84,'_elementor_version','3.1.4'),(364,84,'_wp_page_template','elementor_header_footer'),(365,84,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hey Everyone,\\u00a0<\\/p><p>Thanks for taking time in visitng my website! I\'m Jenni a\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(367,85,'_elementor_edit_mode','builder'),(368,85,'_elementor_template_type','wp-page'),(369,85,'_elementor_version','3.1.4'),(370,85,'_wp_page_template','elementor_header_footer'),(371,85,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hey Everyone,\\u00a0<\\/p><p>Thanks for taking time in visitng my website! I\'m Jenni a\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(372,86,'_elementor_edit_mode','builder'),(373,86,'_elementor_template_type','wp-page'),(374,86,'_elementor_version','3.1.4'),(375,86,'_wp_page_template','elementor_header_footer'),(376,86,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hey Everyone,\\u00a0<\\/p><p>Thanks for taking time in visitng my website! I\'m Jenni a\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;<\\/p>\\n<p><\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7373c0c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"use code <em> fallskin19<em>\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(377,87,'_elementor_edit_mode','builder'),(378,87,'_elementor_template_type','wp-page'),(379,87,'_elementor_version','3.1.4'),(380,87,'_wp_page_template','elementor_header_footer'),(381,87,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(383,88,'_wp_attached_file','2021/04/womans-day-4390452_1920.jpg'),(384,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1279;s:4:\"file\";s:35:\"2021/04/womans-day-4390452_1920.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"womans-day-4390452_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"womans-day-4390452_1920-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"womans-day-4390452_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"womans-day-4390452_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"womans-day-4390452_1920-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:35:\"womans-day-4390452_1920-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:35:\"womans-day-4390452_1920-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 7D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"10\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(391,90,'_wp_attached_file','2021/04/face-3675651_1920.jpg'),(392,90,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:29:\"2021/04/face-3675651_1920.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"face-3675651_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"face-3675651_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"face-3675651_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"face-3675651_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"face-3675651_1920-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:29:\"face-3675651_1920-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:29:\"face-3675651_1920-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(393,91,'_wp_attached_file','2021/04/portrait-3595183_1280.jpg'),(394,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:33:\"2021/04/portrait-3595183_1280.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"portrait-3595183_1280-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"portrait-3595183_1280-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"portrait-3595183_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"portrait-3595183_1280-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:33:\"portrait-3595183_1280-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:33:\"portrait-3595183_1280-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(395,92,'_wp_attached_file','2021/04/bg-img.jpg'),(396,92,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2473;s:6:\"height\";i:1276;s:4:\"file\";s:18:\"2021/04/bg-img.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"bg-img-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"bg-img-1024x528.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"bg-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"bg-img-768x396.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"bg-img-1536x793.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:793;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"bg-img-2048x1057.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1057;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:18:\"bg-img-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:18:\"bg-img-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(397,93,'_elementor_edit_mode','builder'),(398,93,'_elementor_template_type','wp-page'),(399,93,'_elementor_version','3.1.4'),(400,93,'_wp_page_template','elementor_header_footer'),(401,93,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(402,94,'_elementor_edit_mode','builder'),(403,94,'_elementor_template_type','wp-page'),(404,94,'_elementor_version','3.1.4'),(405,94,'_wp_page_template','elementor_header_footer'),(406,94,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":\"21\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":561,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"22\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/prod-11.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(407,95,'_elementor_edit_mode','builder'),(408,95,'_elementor_template_type','wp-page'),(409,95,'_elementor_version','3.1.4'),(410,95,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (411,95,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(413,96,'_elementor_edit_mode','builder'),(414,96,'_elementor_template_type','wp-page'),(415,96,'_elementor_version','3.1.4'),(416,96,'_wp_page_template','elementor_header_footer'),(417,96,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(418,97,'_elementor_edit_mode','builder'),(419,97,'_elementor_template_type','wp-page'),(420,97,'_elementor_version','3.1.4'),(421,97,'_wp_page_template','elementor_header_footer'),(422,97,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"20% discount\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\"ADVERT\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"for new & existing customers - ends december\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\"shop online\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(423,98,'_elementor_edit_mode','builder'),(424,98,'_elementor_template_type','wp-page'),(425,98,'_elementor_version','3.1.4'),(426,98,'_wp_page_template','elementor_header_footer'),(427,98,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(429,99,'_elementor_edit_mode','builder'),(430,99,'_elementor_template_type','wp-page'),(431,99,'_elementor_version','3.1.4'),(432,99,'_wp_page_template','elementor_header_footer'),(433,99,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(434,100,'_elementor_edit_mode','builder'),(435,100,'_elementor_template_type','wp-page'),(436,100,'_elementor_version','3.1.4'),(437,100,'_wp_page_template','elementor_header_footer'),(438,100,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE DEAL\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"EXCLUSIVE PROMOTIONS\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\"& DISCOUNTS\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6df7cc0e\",\"elType\":\"widget\",\"settings\":{\"text\":\"SIGN UP NOW\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"float\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\"},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\"},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\"},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\"}],\"shape\":\"square\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"-42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(439,101,'_elementor_edit_mode','builder'),(440,101,'_elementor_template_type','wp-page'),(441,101,'_elementor_version','3.1.4'),(442,101,'_wp_page_template','elementor_header_footer'),(443,101,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(445,102,'_elementor_edit_mode','builder'),(446,102,'_elementor_template_type','wp-page'),(447,102,'_elementor_version','3.1.4'),(448,102,'_wp_page_template','elementor_header_footer'),(449,102,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(450,103,'_elementor_edit_mode','builder'),(451,103,'_elementor_template_type','wp-page'),(452,103,'_elementor_version','3.1.4'),(453,103,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (454,103,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"FACE & SKINCARE\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAKE GOOD CARE\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"OF YOURSELF\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(455,104,'_elementor_edit_mode','builder'),(456,104,'_elementor_template_type','wp-page'),(457,104,'_elementor_version','3.1.4'),(458,104,'_wp_page_template','elementor_header_footer'),(459,104,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(461,105,'_elementor_edit_mode','builder'),(462,105,'_elementor_template_type','wp-page'),(463,105,'_elementor_version','3.1.4'),(464,105,'_wp_page_template','elementor_header_footer'),(465,105,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(466,106,'_elementor_edit_mode','builder'),(467,106,'_elementor_template_type','wp-page'),(468,106,'_elementor_version','3.1.4'),(469,106,'_wp_page_template','elementor_header_footer'),(470,106,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"RETURNING CUSTOMERS\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(471,107,'_elementor_edit_mode','builder'),(472,107,'_elementor_template_type','wp-page'),(473,107,'_elementor_version','3.1.4'),(474,107,'_wp_page_template','elementor_header_footer'),(475,107,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Blog\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(478,109,'_elementor_edit_mode','builder'),(479,109,'_elementor_template_type','kit'),(480,109,'_elementor_version','3.1.4'),(482,8,'_wp_page_template','default'),(483,8,'_elementor_page_settings','a:4:{s:9:\"site_name\";s:30:\"Sadepisaroita Niitynkukkasilla\";s:16:\"site_description\";s:44:\" Kauneus, muoti, elämäntapa ja onnellisuus\";s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(493,115,'_wp_attached_file','2021/04/sad-logo.png'),(494,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:78;s:4:\"file\";s:20:\"2021/04/sad-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"sad-logo-150x78.png\";s:5:\"width\";i:150;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:19:\"sad-logo-150x78.png\";s:5:\"width\";i:150;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(497,117,'_wp_attached_file','2021/04/sad-fav.png'),(498,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:82;s:4:\"file\";s:19:\"2021/04/sad-fav.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(513,126,'_menu_item_type','post_type'),(514,126,'_menu_item_menu_item_parent','0'),(515,126,'_menu_item_object_id','30'),(516,126,'_menu_item_object','page'),(517,126,'_menu_item_target',''),(518,126,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(519,126,'_menu_item_xfn',''),(520,126,'_menu_item_url',''),(522,127,'_menu_item_type','post_type'),(523,127,'_menu_item_menu_item_parent','0'),(524,127,'_menu_item_object_id','5'),(525,127,'_menu_item_object','page'),(526,127,'_menu_item_target',''),(527,127,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(528,127,'_menu_item_xfn',''),(529,127,'_menu_item_url',''),(531,128,'_edit_lock','1629202005:1'),(532,129,'_edit_lock','1618472057:1'),(533,130,'_edit_lock','1618472101:1'),(534,131,'_edit_lock','1618472085:1'),(535,132,'_edit_lock','1618472083:1'),(536,133,'_edit_lock','1618472074:1'),(537,134,'_edit_lock','1618472082:1'),(538,135,'_edit_lock','1618472078:1'),(539,136,'_wp_attached_file','2021/04/fashion-4417118_960_720-1.jpg'),(540,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:563;s:4:\"file\";s:37:\"2021/04/fashion-4417118_960_720-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"fashion-4417118_960_720-1-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"fashion-4417118_960_720-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"fashion-4417118_960_720-1-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:37:\"fashion-4417118_960_720-1-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:37:\"fashion-4417118_960_720-1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(541,137,'_wp_attached_file','2021/04/portrait-4878714_960_720-1.jpg'),(542,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:38:\"2021/04/portrait-4878714_960_720-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"portrait-4878714_960_720-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"portrait-4878714_960_720-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"portrait-4878714_960_720-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:38:\"portrait-4878714_960_720-1-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:38:\"portrait-4878714_960_720-1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(543,138,'_wp_attached_file','2021/04/clothing-1045960_960_720-1.jpg'),(544,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:38:\"2021/04/clothing-1045960_960_720-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"clothing-1045960_960_720-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"clothing-1045960_960_720-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"clothing-1045960_960_720-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:38:\"clothing-1045960_960_720-1-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:38:\"clothing-1045960_960_720-1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(545,139,'_wp_attached_file','2021/04/model-4355146_960_720.jpg'),(546,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:642;s:4:\"file\";s:33:\"2021/04/model-4355146_960_720.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"model-4355146_960_720-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"model-4355146_960_720-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"model-4355146_960_720-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:33:\"model-4355146_960_720-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:33:\"model-4355146_960_720-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(547,140,'_wp_attached_file','2021/04/fashion-4596664_960_720-2.jpg'),(548,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2021/04/fashion-4596664_960_720-2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"fashion-4596664_960_720-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"fashion-4596664_960_720-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"fashion-4596664_960_720-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:37:\"fashion-4596664_960_720-2-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:37:\"fashion-4596664_960_720-2-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(549,141,'_wp_attached_file','2021/04/download-5.jpg'),(550,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:22:\"2021/04/download-5.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"download-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:22:\"download-5-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(551,142,'_wp_attached_file','2021/04/fashion-2425755_960_720-1.jpg'),(552,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:639;s:4:\"file\";s:37:\"2021/04/fashion-2425755_960_720-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"fashion-2425755_960_720-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"fashion-2425755_960_720-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"fashion-2425755_960_720-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:37:\"fashion-2425755_960_720-1-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:37:\"fashion-2425755_960_720-1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(555,128,'_thumbnail_id','142'),(558,131,'_thumbnail_id','141'),(561,129,'_thumbnail_id','136'),(564,130,'_thumbnail_id','137'),(567,133,'_thumbnail_id','138'),(570,135,'_thumbnail_id','139'),(573,132,'_thumbnail_id','140'),(574,150,'_wp_attached_file','2021/04/fashion-show-1746590_960_720-1.jpg'),(575,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:598;s:4:\"file\";s:42:\"2021/04/fashion-show-1746590_960_720-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"fashion-show-1746590_960_720-1-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"fashion-show-1746590_960_720-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"fashion-show-1746590_960_720-1-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"colon-posts\";a:4:{s:4:\"file\";s:42:\"fashion-show-1746590_960_720-1-765x500.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"colon-posts-thumb\";a:4:{s:4:\"file\";s:42:\"fashion-show-1746590_960_720-1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(578,134,'_thumbnail_id','150'),(583,153,'_elementor_edit_mode','builder'),(584,153,'_elementor_template_type','wp-page'),(585,153,'_elementor_version','3.1.4'),(586,153,'_wp_page_template','elementor_header_footer'),(587,153,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Blog\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(589,154,'_elementor_edit_mode','builder'),(590,154,'_elementor_template_type','wp-page'),(591,154,'_elementor_version','3.1.4'),(592,154,'_wp_page_template','elementor_header_footer'),(593,154,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Blog\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(595,155,'_elementor_edit_mode','builder'),(596,155,'_elementor_template_type','wp-page'),(597,155,'_elementor_version','3.1.4'),(598,155,'_wp_page_template','elementor_header_footer'),(599,155,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Blog\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(609,157,'_elementor_edit_mode','builder'),(610,157,'_elementor_template_type','wp-page'),(611,157,'_elementor_version','3.1.4'),(612,157,'_wp_page_template','elementor_header_footer');
INSERT INTO `wp_postmeta` VALUES (613,157,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Blog\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(615,158,'_elementor_edit_mode','builder'),(616,158,'_elementor_template_type','wp-page'),(617,158,'_elementor_version','3.1.4'),(618,158,'_wp_page_template','elementor_header_footer'),(619,158,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.2999999999999998,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.7000000000000002,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.2000000000000002},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.1000000000000001,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Blog\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.42999999999999999,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.31,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.6000000000000001,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3999999999999999,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.8999999999999999,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999999,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.80000000000000004,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.80000000000000004},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(621,159,'_elementor_edit_mode','builder'),(622,159,'_elementor_template_type','wp-page'),(623,159,'_elementor_version','3.1.4'),(624,159,'_wp_page_template','elementor_header_footer'),(625,159,'_elementor_data','[{\"id\":\"1fac9d6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":93},\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/madhen-1773911_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.13)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.810000000000000053290705182007513940334320068359375},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.20000000000000017763568394002504646778106689453125},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"gradient\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":533,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom\":\"arrow\",\"shape_divider_bottom_color\":\"#0c0c0c\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":56,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\"},\"elements\":[{\"id\":\"547e8189\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"3716540d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60289f44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"21de56ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"naisten-\",\"align\":\"left\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.29999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21d3a359\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmuoti\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":5.29999999999999982236431605997495353221893310546875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\",\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"455a13ac\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"fda7594\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"217cb65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMUOTI | MATKA |\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"171f2a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nELINTAPA\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"22beff32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"31caa19d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"99bb\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591ebf4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"_element_id\":\"start\"},\"elements\":[{\"id\":\"74a381ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":56,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girl-996450_1920.jpg\"},\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"background_color\":\"#000000\",\"background_position_tablet\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"background_repeat_tablet\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_color\":\"#0C0C0C\",\"background_overlay_position\":\"center center\",\"background_overlay_position_tablet\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_repeat_tablet\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"background_overlay_size_tablet\":\"initial\",\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"7\",\"right\":\"1\",\"bottom\":\"7\",\"left\":\"1\",\"isLinked\":false},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"2db27d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nIHONHOITO\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ce68047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bcda423\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4466a7bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"IHONHOITO &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aab29ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nkauneusvinkkej\\u00e4\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36d0cadc\",\"elType\":\"widget\",\"settings\":{\"text\":\" siirry blogiin\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"40275b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fddedd7\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"46ba5f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a0d1818\",\"elType\":\"widget\",\"settings\":{\"text\":\" ihonhoitotuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6eec1ad3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"7dcaa581\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"285a207c\",\"elType\":\"widget\",\"settings\":{\"text\":\" partavaahto\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c0d69e1\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3e820405\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29c40525\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hiustuotteet\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e0284cf\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"1e2ce1d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a86f05f\",\"elType\":\"widget\",\"settings\":{\"text\":\" Hajuvedet ja tuoksut\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14005e6f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"24e87df9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"63218319\",\"elType\":\"widget\",\"settings\":{\"text\":\" henkil\\u00f6kohtainen hygieniapakkaus\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7f80fbb5\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"3fb41cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66f4914a\",\"elType\":\"widget\",\"settings\":{\"text\":\"kuntosali- ja matkavinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"617ed5c3\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"69b35a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f00cc22\",\"elType\":\"widget\",\"settings\":{\"text\":\" ruokavalio ja detox\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"hover_color\":\"#ed7a00\",\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ed242a\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#050505\"},\"elements\":[{\"id\":\"cffe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"29740b9c\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muotityylivinkkej\\u00e4\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d5053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2ef884c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"45f6df43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6abc60ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"ba6f33c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nUUSIMMAT POSTIT\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a67fa5a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b89ee48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab553d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\ntehd\\u00e4 aikaa &\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31409606\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HAUSKAA!\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35b4e309\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1124be1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":50,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4e95a708\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6f5901c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"78ad001d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":51,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/girls-1828539_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3d561a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fashion Style\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3e011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2231c810\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5eb29172\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#424242\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1bc279a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":60,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womens-1594288_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"250\",\"height\":\"250\"},\"align\":\"center\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45a7c7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Travel Tips\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5ce775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"justify\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5015728\",\"elType\":\"widget\",\"settings\":{\"text\":\" LUE LIS\\u00c4\\u00c4\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-chevron-right\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"justify\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8cb5a8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e4f8540\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"10a34c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"vh\",\"size\":50},\"background_background\":\"classic\",\"background_image\":{\"id\":55,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/woman-1536747_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000F5\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"auto\",\"css_filters_blur\":{\"unit\":\"px\",\"size\":6.20000000000000017763568394002504646778106689453125},\"background_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":76},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":\"183\"},\"height\":\"min-height\",\"background_overlay_background\":\"classic\",\"background_position_mobile\":\"center center\",\"background_size_mobile\":\"cover\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_attachment\":\"fixed\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":87,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c657389\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"77aa382c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"599d1358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c58672\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nel\\u00e4m\\u00e4ntapa\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":3.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e0fbe24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4bbf71b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"58f12b1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nPID\\u00c4 HYV\\u00c4\\u00c4 HUOLTA\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6455ee1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nITSEST\\u00c4SI\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a12a4f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Blog\",\"align\":\"left\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"#1e1e1e\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-sign-in\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"},{\"id\":\"68206851\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":\"\"},{\"id\":\"6a08dfb5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#ed7a00\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"39245ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17d724b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-down\",\"primary_color\":\"#232323\",\"hover_animation\":\"sink\",\"selected_icon\":{\"value\":\"fas fa-angle-double-down\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54f338e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1140,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"43d6bc82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"58b03e01\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(124,124,124,0.72)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"structure\":\"40\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eeaff74\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7afb3236\",\"elType\":\"widget\",\"settings\":{\"text\":\" matkustaa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-circle\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5a3e9432\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1db8ab2f\",\"elType\":\"widget\",\"settings\":{\"text\":\" el\\u00e4m\\u00e4ntapa\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"20b22f84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"283aeb23\",\"elType\":\"widget\",\"settings\":{\"text\":\" Onnellisuus\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"right\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8ecc454\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"20ce3232\",\"elType\":\"widget\",\"settings\":{\"text\":\" Muoti\",\"align\":\"justify\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-circle-o\",\"button_text_color\":\"#c6c6c6\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0.42)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-circle\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a3ec0b9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0.5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0.5\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c5b0dc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89000000000000001332267629550187848508358001708984375,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_overlay_color_b\":\"#525354\"},\"elements\":[{\"id\":\"309ee3a4\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0.5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27966d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"345e760c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n20% alennus\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f3d975\",\"elType\":\"widget\",\"settings\":{\"text\":\" Mainos\",\"align\":\"left\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(0,0,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-question-circle-o\",\"button_text_color\":\"#ed7a00\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(239,83,83,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"left\",\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-51,\"sizes\":[]},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"far fa-question-circle\",\"library\":\"fa-regular\"},\"_offset_x\":{\"size\":-3,\"unit\":\"px\"},\"_offset_y\":{\"size\":9,\"unit\":\"px\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"17b257fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nuusille ja olemassa oleville asiakkaille\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"781abc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":20,\"content_position\":\"center\",\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_color\":\"#ed7a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2d2d2d\",\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd353e\",\"elType\":\"widget\",\"settings\":{\"text\":\" tilaa\",\"align\":\"center\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"background_color\":\"rgba(30,30,30,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":40,\"spread\":-6,\"color\":\"rgba(0,0,0,0.2)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"icon\":\"fa fa-shopping-cart\",\"button_text_color\":\"#ffffff\",\"_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"hover_animation\":\"push\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"rgba(183,183,183,0)\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"fast\",\"align_tablet\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"selected_icon\":{\"value\":\"fas fa-shopping-cart\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ace33ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0c0c0c\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"id\":92,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg-img.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.429999999999999993338661852249060757458209991455078125,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":-41,\"sizes\":[]},\"background_attachment\":\"fixed\",\"background_bg_width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[{\"id\":\"63993d6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6391481\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"758df491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":88,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/womans-day-4390452_1920.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#ed7a00\",\"_inline_size_tablet\":100,\"background_color\":\"#424242\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c85e75a\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"85b4024\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"324364cc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ff505f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nmatkustaa\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.600000000000000088817841970012523233890533447265625,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45ca5942\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\n\\\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme k\\u00e4ytt\\u00e4neet\\\"\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71fb9af1\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"44de712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":90,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/face-3675651_1920.jpg\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(12,12,12,0.86)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.309999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#383838\",\"_inline_size_tablet\":100,\"background_color\":\"#1e1e1e\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"17f21627\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"60680945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41778531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":109,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"730ca67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karl Lagerfeld\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":2.600000000000000088817841970012523233890533447265625,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675f3b5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\\\" \",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2cfdffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"text_align\":\"center\",\"space_between_widgets\":0,\"content_position\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"2\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"align\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4466f451\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nMinusta\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f1a2b72\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c7ac59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f00e02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jenni  \",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57a42b02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nuorela\",\"header_size\":\"h4\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Seaweed Script\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ff3e838\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hei kaikki,<\\/p><p>Kiitos, ett\\u00e4 k\\u00e4ytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendej\\u00e4. Teen my\\u00f6s sit\\u00e4, mik\\u00e4 tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna t\\u00e4m\\u00e4 sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia \\u200b\\u200basioita, jotka tekev\\u00e4t naisesta onnellisen.<\\/p>\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbd88b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Asun LUVIA Suomessa, minulla oli tyt\\u00e4r, jota rakastan niin paljon. Koska olen \\u00e4iti, ajattelin, ett\\u00e4 synnytyksen j\\u00e4lkeen menett\\u00e4isin kaltaisen muodin ja keskittyisin vain olemaan koti\\u00e4iti ja lapset ... Mutta opin, ett\\u00e4 oleminen ja hyv\\u00e4nn\\u00e4k\\u00f6inen ilo tekee minusta. Se sai minut v\\u00e4h\\u00e4n onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.\",\"align\":\"left\",\"text_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amiko\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"align_mobile\":\"left\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ffe75c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"afcfed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7edd16b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Kasino- ja muoti-guesthouset - erinomaiset h\\u00e4\\u00e4t<\\/h2><p><br \\/>Ei ole ep\\u00e4ilyst\\u00e4k\\u00e4\\u00e4n siit\\u00e4, ett\\u00e4 jos suunnittelet h\\u00e4\\u00e4t tai muuta erityist\\u00e4 tilaisuutta, sinun kannattaa harkita y\\u00f6pymist\\u00e4 h\\u00e4\\u00e4majassa. N\\u00e4iden vierastalojen tarjoamat palvelut ovat yksinkertaisesti erinomaisia \\u200b\\u200bja tilat, jotka takaavat <a href=\\\"https:\\/\\/kaikkipokerista.com\\/pokerisivustot\\/betsafe\\/\\\">kaikkipokerista.com<\\/a>, ett\\u00e4 vierailusi on mukavaa ja vaivatonta. T\\u00e4llainen guesthouse voi j\\u00e4rjest\\u00e4\\u00e4 kaiken lentokentt\\u00e4kuljetuksista langattomaan internetyhteyteen pelilaitteisiin. On jopa monia, jotka tarjoavat t\\u00e4yden huonepalvelun ja pys\\u00e4k\\u00f6intipalvelun, samalla kun he veloittavat kohtuulliset hinnat palveluistaan. Monissa n\\u00e4ist\\u00e4 lomakohteista on ravintoloita, joten tarjolla on runsaasti ruokapaikkoja.<\\/p><p>Yksi parhaista ominaisuuksista, jotka on tarkistettava ylellisess\\u00e4 all-suite-lomakeskuksessa, on kaapelitelevision saatavuus. Kaapelitelevisio pit\\u00e4\\u00e4 sinut viihdytt\\u00e4v\\u00e4n\\u00e4 ja tarjoaa sinulle kaiken viihteen, jota mahdollisesti tarvitset poissa kotoa ollessasi. Lis\\u00e4ksi monissa n\\u00e4ist\\u00e4 lomakohteista on paikan p\\u00e4\\u00e4ll\\u00e4 oleva kasino, joka tarjoaa sinulle t\\u00e4ydellisen kokemuksen kolikkopelien, crapsien tai blackjackin pelaamisesta.<\\/p><p>Jos etsit paikkaa, jossa voit ruokailla, sinun kannattaa ruokailla kasinolla ja muoti-guesthousessa, koska n\\u00e4m\\u00e4 paikat tarjoavat hienoimpia ruokailumahdollisuuksia kaikkialla. On satoja ravintoloita, joista valita, sek\\u00e4 laaja valikoima ruokia n\\u00e4ytteeksi. N\\u00e4iss\\u00e4 lomakohteissa saamasi ruoan laatu on yksinkertaisesti upeaa. Parempaa ruokailukokemusta on todellakin vaikea l\\u00f6yt\\u00e4\\u00e4 mist\\u00e4\\u00e4n muualta.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4619d11e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1120,\"sizes\":[]},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":45},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":425,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"id\":\"20\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c0c0c\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"background_overlay_color_b\":\"rgba(0,0,0,0.62)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#7a7a7a\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":157,\"sizes\":[]},\"shape_divider_bottom_color\":\"#1e1e1e\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":300,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"786d37fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d18e4ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"583fc6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ece7a4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alexander McQueen\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Tenor Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d1eba0f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":665,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.6\",\"isLinked\":false}},\"elements\":[{\"id\":\"698cc372\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2e48317d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bee09a\",\"elType\":\"widget\",\"settings\":{\"title\":\" \\n\\\"Luulen, ett\\u00e4 kaikessa on kauneutta. Mit\\u00e4\\\" normaalit \\\"ihmiset pit\\u00e4v\\u00e4t rumaina,  voin yleens\\u00e4 n\\u00e4hd\\u00e4 siin\\u00e4 jotain kauneutta.\\\" \",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ed7a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Orienta\",\"typography_font_size\":{\"unit\":\"em\",\"size\":0.85999999999999998667732370449812151491641998291015625,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":5.5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0.5\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0.2\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14af7e2f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"33aac5d\",\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-twitter\",\"_id\":\"c2765f5\",\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-yelp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"61a8fa5\",\"social_icon\":{\"value\":\"fab fa-yelp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}},{\"social\":\"fa fa-whatsapp\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a3f465c\",\"social_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"__fa4_migrated\":{\"social_icon\":true}}],\"shape\":\"square\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#ed7a00\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0.6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"hover_primary_color\":\"#1c1c1c\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64b832a7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"repeat\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"stretch_section\":\"section-stretched\",\"content_position\":\"middle\",\"background_attachment\":\"fixed\",\"background_video_fallback\":{\"id\":23,\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/placeholder.png\"},\"background_overlay_image\":{\"id\":\"11\",\"url\":\"http:\\/\\/sadepisaroitaniitynkukkasilla.fi\\/wp-content\\/uploads\\/2021\\/04\\/bg.png\"},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_color\":\"#0c0c0c\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#ed7a00\"},\"elements\":[{\"id\":\"427aa55b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"346c255e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-angle-double-up\",\"primary_color\":\"#7a7a7a\",\"hover_animation\":\"sink\",\"link\":{\"url\":\"#start\",\"is_external\":\"\",\"nofollow\":\"\"},\"hover_primary_color\":\"#ed7a00\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(627,5,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:27;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:27;s:5:\"align\";i:24;s:11:\"header_size\";i:17;s:12:\"align_tablet\";i:10;s:12:\"align_mobile\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:27;s:21:\"typography_typography\";i:27;s:22:\"typography_font_family\";i:27;s:20:\"typography_font_size\";i:27;s:22:\"typography_font_weight\";i:27;s:25:\"typography_text_transform\";i:25;s:25:\"typography_letter_spacing\";i:27;s:27:\"typography_font_size_mobile\";i:27;s:22:\"typography_line_height\";i:10;s:29:\"typography_line_height_mobile\";i:10;s:32:\"typography_letter_spacing_mobile\";i:27;s:27:\"typography_font_size_tablet\";i:10;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:27;s:15:\"_padding_tablet\";i:10;s:7:\"_margin\";i:10;s:14:\"_margin_mobile\";i:18;s:15:\"_padding_mobile\";i:18;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:14;s:23:\"_element_vertical_align\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:42;s:21:\"space_between_widgets\";i:21;s:16:\"content_position\";i:12;s:5:\"align\";i:7;s:19:\"_inline_size_tablet\";i:22;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:30;s:7:\"padding\";i:35;s:14:\"padding_mobile\";i:13;s:14:\"padding_tablet\";i:13;s:13:\"margin_mobile\";i:4;s:13:\"margin_tablet\";i:6;}}s:5:\"style\";a:4:{s:12:\"section_typo\";a:1:{s:10:\"text_align\";i:5;}s:13:\"section_style\";a:9:{s:21:\"background_background\";i:12;s:16:\"background_image\";i:4;s:16:\"background_color\";i:6;s:26:\"background_position_tablet\";i:1;s:17:\"background_repeat\";i:5;s:24:\"background_repeat_tablet\";i:1;s:15:\"background_size\";i:5;s:19:\"background_position\";i:5;s:15:\"background_xpos\";i:1;}s:26:\"section_background_overlay\";a:17:{s:24:\"background_overlay_color\";i:6;s:27:\"background_overlay_position\";i:1;s:34:\"background_overlay_position_tablet\";i:1;s:25:\"background_overlay_repeat\";i:1;s:32:\"background_overlay_repeat_tablet\";i:1;s:23:\"background_overlay_size\";i:1;s:30:\"background_overlay_size_tablet\";i:1;s:34:\"background_overlay_bg_width_tablet\";i:1;s:26:\"background_overlay_opacity\";i:6;s:30:\"background_overlay_size_mobile\";i:1;s:34:\"background_overlay_bg_width_mobile\";i:1;s:29:\"background_overlay_background\";i:6;s:22:\"css_filters_css_filter\";i:1;s:16:\"css_filters_blur\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_contrast\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:7;s:12:\"border_width\";i:7;s:12:\"border_color\";i:7;s:19:\"border_hover_border\";i:1;s:18:\"border_hover_width\";i:1;s:19:\"border_radius_hover\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:38;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:13:\"content_width\";i:10;s:3:\"gap\";i:3;s:13:\"custom_height\";i:5;s:6:\"height\";i:5;s:20:\"custom_height_tablet\";i:3;s:15:\"stretch_section\";i:3;s:16:\"content_position\";i:3;s:12:\"height_inner\";i:5;s:19:\"custom_height_inner\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:7:{s:13:\"margin_mobile\";i:6;s:14:\"padding_mobile\";i:18;s:7:\"padding\";i:25;s:14:\"padding_tablet\";i:16;s:13:\"margin_tablet\";i:5;s:6:\"margin\";i:17;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:3;s:20:\"reverse_order_mobile\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:13:{s:21:\"background_background\";i:14;s:16:\"background_image\";i:4;s:19:\"background_position\";i:7;s:17:\"background_repeat\";i:6;s:15:\"background_size\";i:7;s:16:\"background_color\";i:13;s:26:\"background_position_mobile\";i:2;s:22:\"background_size_mobile\";i:2;s:21:\"background_attachment\";i:5;s:25:\"background_video_fallback\";i:3;s:15:\"background_xpos\";i:1;s:15:\"background_ypos\";i:1;s:19:\"background_bg_width\";i:1;}s:26:\"section_background_overlay\";a:15:{s:24:\"background_overlay_color\";i:4;s:26:\"background_overlay_opacity\";i:7;s:27:\"background_overlay_position\";i:5;s:25:\"background_overlay_repeat\";i:5;s:23:\"background_overlay_size\";i:2;s:16:\"css_filters_blur\";i:2;s:26:\"background_overlay_color_b\";i:3;s:31:\"background_overlay_color_b_stop\";i:2;s:33:\"background_overlay_gradient_angle\";i:2;s:29:\"background_overlay_background\";i:4;s:22:\"css_filters_brightness\";i:3;s:29:\"background_overlay_color_stop\";i:2;s:32:\"background_overlay_gradient_type\";i:1;s:24:\"background_overlay_image\";i:3;s:20:\"css_filters_saturate\";i:1;}s:21:\"section_shape_divider\";a:7:{s:23:\"shape_divider_top_width\";i:3;s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_color\";i:3;s:26:\"shape_divider_bottom_width\";i:3;s:33:\"shape_divider_bottom_width_mobile\";i:3;s:27:\"shape_divider_bottom_height\";i:3;s:34:\"shape_divider_bottom_height_mobile\";i:3;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:11;s:12:\"border_width\";i:12;s:12:\"border_color\";i:12;s:19:\"border_hover_border\";i:8;s:18:\"border_hover_width\";i:8;s:18:\"border_hover_color\";i:8;s:13:\"border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:3;s:15:\"hover_animation\";i:3;s:19:\"hover_primary_color\";i:2;}}s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"link\";i:2;s:13:\"selected_icon\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:8:{s:4:\"text\";i:18;s:5:\"align\";i:18;s:12:\"align_mobile\";i:18;s:12:\"align_tablet\";i:18;s:13:\"selected_icon\";i:18;s:4:\"link\";i:2;s:10:\"icon_align\";i:1;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:21:\"typography_typography\";i:18;s:22:\"typography_font_family\";i:18;s:20:\"typography_font_size\";i:18;s:22:\"typography_font_weight\";i:18;s:25:\"typography_text_transform\";i:18;s:16:\"background_color\";i:18;s:13:\"border_radius\";i:18;s:28:\"button_box_shadow_box_shadow\";i:18;s:12:\"text_padding\";i:18;s:17:\"button_text_color\";i:18;s:15:\"hover_animation\";i:17;s:13:\"border_border\";i:18;s:12:\"border_width\";i:18;s:12:\"border_color\";i:18;s:25:\"typography_letter_spacing\";i:12;s:27:\"typography_font_size_mobile\";i:8;s:11:\"hover_color\";i:6;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:18;s:7:\"_margin\";i:18;s:15:\"_padding_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:18;s:18:\"animation_duration\";i:18;}s:17:\"_section_position\";a:7:{s:9:\"_position\";i:1;s:16:\"_offset_x_tablet\";i:1;s:16:\"_offset_x_mobile\";i:1;s:16:\"_offset_y_tablet\";i:1;s:16:\"_offset_y_mobile\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:5;s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:22:\"typography_line_height\";i:5;s:25:\"typography_letter_spacing\";i:5;s:12:\"align_tablet\";i:5;s:12:\"align_mobile\";i:5;s:20:\"typography_font_size\";i:5;s:27:\"typography_font_size_mobile\";i:5;s:29:\"typography_line_height_mobile\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:15:\"_padding_mobile\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:22:\"image_custom_dimension\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:22:\"css_filters_css_filter\";i:2;s:22:\"css_filters_brightness\";i:2;s:20:\"css_filters_contrast\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:3:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;}s:20:\"section_social_hover\";a:1:{s:19:\"hover_primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(639,165,'_edit_lock','1629282032:1'),(640,169,'_edit_lock','1629281991:1'),(641,170,'_edit_lock','1631519100:1'),(644,90,'_wp_attachment_image_alt','sadepisaroitaniitynkukkasilla'),(647,170,'_thumbnail_id','90'),(648,173,'_edit_lock','1629280668:1'),(649,138,'_wp_attachment_image_alt','sadepisaroitaniitynkukkasilla'),(652,173,'_thumbnail_id','138'),(653,169,'_thumbnail_id','60'),(654,177,'_edit_lock','1629280635:1'),(655,165,'_thumbnail_id','142'),(658,179,'_edit_lock','1629282084:1'),(667,8,'_elementor_css','a:6:{s:4:\"time\";i:1631626692;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(668,5,'_elementor_css','a:6:{s:4:\"time\";i:1631626692;s:5:\"fonts\";a:4:{i:0;s:10:\"Tenor Sans\";i:2;s:7:\"Orienta\";i:19;s:5:\"Amiko\";i:43;s:14:\"Seaweed Script\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:2;s:10:\"fa-regular\";i:20;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(683,195,'wpil_sync_report3','1'),(684,195,'wpil_links_inbound_internal_count','0'),(685,195,'wpil_links_inbound_internal_count_data','a:0:{}'),(686,195,'wpil_links_outbound_internal_count','0'),(687,195,'wpil_links_outbound_internal_count_data','a:0:{}'),(688,195,'wpil_links_outbound_external_count','0'),(689,195,'wpil_links_outbound_external_count_data','a:0:{}'),(690,195,'wpil_sync_report2_time','2023-12-11T11:09:40+00:00'),(691,195,'_edit_lock','1692899843:1'),(694,195,'_edit_last','1'),(695,197,'wpil_sync_report3','1'),(696,197,'wpil_links_inbound_internal_count','0'),(697,197,'wpil_links_inbound_internal_count_data','a:0:{}'),(698,197,'wpil_links_outbound_internal_count','0'),(699,197,'wpil_links_outbound_internal_count_data','a:0:{}'),(700,197,'wpil_links_outbound_external_count','0'),(701,197,'wpil_links_outbound_external_count_data','a:0:{}'),(702,197,'wpil_sync_report2_time','2023-12-11T11:09:40+00:00'),(703,197,'_edit_lock','1692899917:1'),(706,197,'_edit_last','1'),(707,199,'wpil_sync_report3','1'),(708,199,'wpil_links_inbound_internal_count','0'),(709,199,'wpil_links_inbound_internal_count_data','a:0:{}'),(710,199,'wpil_links_outbound_internal_count','0'),(711,199,'wpil_links_outbound_internal_count_data','a:0:{}'),(712,199,'wpil_links_outbound_external_count','0'),(713,199,'wpil_links_outbound_external_count_data','a:0:{}'),(714,199,'wpil_sync_report2_time','2023-12-11T11:09:39+00:00'),(715,199,'_edit_lock','1692900003:1'),(718,199,'_edit_last','1'),(719,201,'wpil_sync_report3','1'),(720,201,'wpil_links_inbound_internal_count','0'),(721,201,'wpil_links_inbound_internal_count_data','a:0:{}'),(722,201,'wpil_links_outbound_internal_count','0'),(723,201,'wpil_links_outbound_internal_count_data','a:0:{}'),(724,201,'wpil_links_outbound_external_count','0'),(725,201,'wpil_links_outbound_external_count_data','a:0:{}'),(726,201,'wpil_sync_report2_time','2023-12-11T11:09:39+00:00'),(727,201,'_edit_lock','1692900077:1'),(730,201,'_edit_last','1'),(731,203,'wpil_sync_report3','1'),(732,203,'wpil_links_inbound_internal_count','0'),(733,203,'wpil_links_inbound_internal_count_data','a:0:{}'),(734,203,'wpil_links_outbound_internal_count','0'),(735,203,'wpil_links_outbound_internal_count_data','a:0:{}'),(736,203,'wpil_links_outbound_external_count','0'),(737,203,'wpil_links_outbound_external_count_data','a:0:{}'),(738,203,'wpil_sync_report2_time','2023-12-11T11:09:39+00:00'),(739,203,'_edit_lock','1692900220:1'),(742,203,'_edit_last','1'),(745,177,'wpil_sync_report3','1'),(746,177,'wpil_links_inbound_internal_count','2'),(747,177,'wpil_links_inbound_internal_count_data','a:2:{i:0;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:49:\"http://sadepisaroitaniitynkukkasilla.fi/matkailu/\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";s:3:\"173\";s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:10:\"tuomiseen \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}i:1;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:49:\"http://sadepisaroitaniitynkukkasilla.fi/matkailu/\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";s:3:\"170\";s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:14:\"näytettävä \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}}'),(748,177,'wpil_links_outbound_internal_count','2'),(749,177,'wpil_links_outbound_internal_count_data','a:2:{i:0;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:69:\"http://sadepisaroitaniitynkukkasilla.fi/mita-muotisuunnittelija-tekee\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";i:173;s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:12:\"klassisessa \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}i:1;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:64:\"http://sadepisaroitaniitynkukkasilla.fi/mika-on-muotisuunnittelu\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";i:170;s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:6:\"alkaen\";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}}'),(750,177,'wpil_links_outbound_external_count','0'),(751,177,'wpil_links_outbound_external_count_data','a:0:{}'),(752,177,'wpil_sync_report2_time','2023-12-11T11:09:40+00:00'),(753,173,'wpil_links_inbound_internal_count','2'),(754,173,'wpil_links_inbound_internal_count_data','a:2:{i:0;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:70:\"http://sadepisaroitaniitynkukkasilla.fi/mita-muotisuunnittelija-tekee/\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";s:3:\"177\";s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:12:\"klassisessa \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}i:1;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:70:\"http://sadepisaroitaniitynkukkasilla.fi/mita-muotisuunnittelija-tekee/\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";s:3:\"170\";s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:15:\"innovatiivisia \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}}'),(755,173,'wpil_links_outbound_internal_count','2'),(756,173,'wpil_links_outbound_internal_count_data','a:2:{i:0;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:64:\"http://sadepisaroitaniitynkukkasilla.fi/mika-on-muotisuunnittelu\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";i:170;s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:11:\"tuotantoon \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}i:1;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:48:\"http://sadepisaroitaniitynkukkasilla.fi/matkailu\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";i:177;s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:10:\"tuomiseen \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}}'),(757,173,'wpil_links_outbound_external_count','0'),(758,173,'wpil_links_outbound_external_count_data','a:0:{}'),(759,173,'wpil_sync_report2_time','2023-12-11T11:09:41+00:00'),(760,170,'wpil_links_inbound_internal_count','2'),(761,170,'wpil_links_inbound_internal_count_data','a:2:{i:0;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:65:\"http://sadepisaroitaniitynkukkasilla.fi/mika-on-muotisuunnittelu/\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";s:3:\"177\";s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:6:\"alkaen\";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}i:1;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:65:\"http://sadepisaroitaniitynkukkasilla.fi/mika-on-muotisuunnittelu/\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";s:3:\"173\";s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:11:\"tuotantoon \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}}'),(762,170,'wpil_links_outbound_internal_count','2'),(763,170,'wpil_links_outbound_internal_count_data','a:2:{i:0;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:48:\"http://sadepisaroitaniitynkukkasilla.fi/matkailu\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";i:177;s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:14:\"näytettävä \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}i:1;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:69:\"http://sadepisaroitaniitynkukkasilla.fi/mita-muotisuunnittelija-tekee\";s:4:\"host\";s:32:\"sadepisaroitaniitynkukkasilla.fi\";s:8:\"internal\";b:1;s:4:\"post\";O:15:\"Wpil_Model_Post\":9:{s:2:\"id\";i:173;s:5:\"title\";N;s:4:\"type\";s:4:\"post\";s:6:\"status\";N;s:7:\"content\";N;s:5:\"links\";N;s:4:\"slug\";N;s:6:\"clicks\";N;s:8:\"position\";N;}s:6:\"anchor\";s:15:\"innovatiivisia \";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}}'),(764,170,'wpil_links_outbound_external_count','1'),(765,170,'wpil_links_outbound_external_count_data','a:1:{i:0;O:15:\"Wpil_Model_Link\":7:{s:3:\"url\";s:68:\"https://www.suomalaiset-kasinot.net/kasinot-ilman-rekisteroitymista/\";s:4:\"host\";s:23:\"suomalaiset-kasinot.net\";s:8:\"internal\";b:0;s:4:\"post\";N;s:6:\"anchor\";s:19:\"suomalaiset-kasinot\";s:15:\"added_by_plugin\";b:0;s:8:\"location\";s:7:\"content\";}}'),(766,170,'wpil_sync_report2_time','2023-12-11T11:09:40+00:00'),(769,173,'wpil_sync_report3','1'),(772,170,'wpil_sync_report3','1'),(775,134,'wpil_sync_report3','1'),(776,134,'wpil_links_inbound_internal_count','0'),(777,134,'wpil_links_inbound_internal_count_data','a:0:{}'),(778,134,'wpil_links_outbound_internal_count','0'),(779,134,'wpil_links_outbound_internal_count_data','a:0:{}'),(780,134,'wpil_links_outbound_external_count','0'),(781,134,'wpil_links_outbound_external_count_data','a:0:{}'),(782,134,'wpil_sync_report2_time','2023-12-11T11:09:41+00:00'),(785,132,'wpil_sync_report3','1'),(786,132,'wpil_links_inbound_internal_count','0'),(787,132,'wpil_links_inbound_internal_count_data','a:0:{}'),(788,132,'wpil_links_outbound_internal_count','0'),(789,132,'wpil_links_outbound_internal_count_data','a:0:{}'),(790,132,'wpil_links_outbound_external_count','0'),(791,132,'wpil_links_outbound_external_count_data','a:0:{}'),(792,132,'wpil_sync_report2_time','2023-12-11T11:09:41+00:00'),(795,135,'wpil_sync_report3','1'),(796,135,'wpil_links_inbound_internal_count','0'),(797,135,'wpil_links_inbound_internal_count_data','a:0:{}'),(798,135,'wpil_links_outbound_internal_count','0'),(799,135,'wpil_links_outbound_internal_count_data','a:0:{}'),(800,135,'wpil_links_outbound_external_count','0'),(801,135,'wpil_links_outbound_external_count_data','a:0:{}'),(802,135,'wpil_sync_report2_time','2023-12-11T11:09:41+00:00'),(805,133,'wpil_sync_report3','1'),(806,133,'wpil_links_inbound_internal_count','0'),(807,133,'wpil_links_inbound_internal_count_data','a:0:{}'),(808,133,'wpil_links_outbound_internal_count','0'),(809,133,'wpil_links_outbound_internal_count_data','a:0:{}'),(810,133,'wpil_links_outbound_external_count','0'),(811,133,'wpil_links_outbound_external_count_data','a:0:{}'),(812,133,'wpil_sync_report2_time','2023-12-11T11:09:41+00:00'),(815,130,'wpil_sync_report3','1'),(816,130,'wpil_links_inbound_internal_count','0'),(817,130,'wpil_links_inbound_internal_count_data','a:0:{}'),(818,130,'wpil_links_outbound_internal_count','0'),(819,130,'wpil_links_outbound_internal_count_data','a:0:{}'),(820,130,'wpil_links_outbound_external_count','0'),(821,130,'wpil_links_outbound_external_count_data','a:0:{}'),(822,130,'wpil_sync_report2_time','2023-12-11T11:09:41+00:00'),(825,129,'wpil_sync_report3','1'),(826,129,'wpil_links_inbound_internal_count','0'),(827,129,'wpil_links_inbound_internal_count_data','a:0:{}'),(828,129,'wpil_links_outbound_internal_count','0'),(829,129,'wpil_links_outbound_internal_count_data','a:0:{}'),(830,129,'wpil_links_outbound_external_count','0'),(831,129,'wpil_links_outbound_external_count_data','a:0:{}'),(832,129,'wpil_sync_report2_time','2023-12-11T11:09:41+00:00'),(835,131,'wpil_sync_report3','1'),(836,131,'wpil_links_inbound_internal_count','0'),(837,131,'wpil_links_inbound_internal_count_data','a:0:{}'),(838,131,'wpil_links_outbound_internal_count','0'),(839,131,'wpil_links_outbound_internal_count_data','a:0:{}'),(840,131,'wpil_links_outbound_external_count','0'),(841,131,'wpil_links_outbound_external_count_data','a:0:{}'),(842,131,'wpil_sync_report2_time','2023-12-11T11:09:41+00:00'),(845,128,'wpil_sync_report3','1'),(846,128,'wpil_links_inbound_internal_count','0'),(847,128,'wpil_links_inbound_internal_count_data','a:0:{}'),(848,128,'wpil_links_outbound_internal_count','0'),(849,128,'wpil_links_outbound_internal_count_data','a:0:{}'),(850,128,'wpil_links_outbound_external_count','0'),(851,128,'wpil_links_outbound_external_count_data','a:0:{}'),(852,128,'wpil_sync_report2_time','2023-12-11T11:09:42+00:00');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=205 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (3,1,'2021-04-08 11:28:05','2021-04-08 11:28:05','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://sadepisaroitaniitynkukkasilla.fi.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-04-08 11:28:05','2021-04-08 11:28:05','',0,'http://sadepisaroitaniitynkukkasilla.fi/?page_id=3',0,'page','',0),(5,1,'2021-04-15 04:01:21','2021-04-15 04:01:21','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n															<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />															\n			<h4>Fashion Style</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n															<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />															\n			<h4>Travel Tips</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						Blog\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.<h2 style=\"text-align: center;\">Kasino- ja muoti-guesthouset - erinomaiset häät</h2><p><br />Ei ole epäilystäkään siitä, että jos suunnittelet häät tai muuta erityistä tilaisuutta, sinun kannattaa harkita yöpymistä häämajassa. Näiden vierastalojen tarjoamat palvelut ovat yksinkertaisesti erinomaisia ​​ja tilat, jotka takaavat <a href=\"https://kaikkipokerista.com/pokerisivustot/betsafe/\">kaikkipokerista.com</a>, että vierailusi on mukavaa ja vaivatonta. Tällainen guesthouse voi järjestää kaiken lentokenttäkuljetuksista langattomaan internetyhteyteen pelilaitteisiin. On jopa monia, jotka tarjoavat täyden huonepalvelun ja pysäköintipalvelun, samalla kun he veloittavat kohtuulliset hinnat palveluistaan. Monissa näistä lomakohteista on ravintoloita, joten tarjolla on runsaasti ruokapaikkoja.</p><p>Yksi parhaista ominaisuuksista, jotka on tarkistettava ylellisessä all-suite-lomakeskuksessa, on kaapelitelevision saatavuus. Kaapelitelevisio pitää sinut viihdyttävänä ja tarjoaa sinulle kaiken viihteen, jota mahdollisesti tarvitset poissa kotoa ollessasi. Lisäksi monissa näistä lomakohteista on paikan päällä oleva kasino, joka tarjoaa sinulle täydellisen kokemuksen kolikkopelien, crapsien tai blackjackin pelaamisesta.</p><p>Jos etsit paikkaa, jossa voit ruokailla, sinun kannattaa ruokailla kasinolla ja muoti-guesthousessa, koska nämä paikat tarjoavat hienoimpia ruokailumahdollisuuksia kaikkialla. On satoja ravintoloita, joista valita, sekä laaja valikoima ruokia näytteeksi. Näissä lomakohteissa saamasi ruoan laatu on yksinkertaisesti upeaa. Parempaa ruokailukokemusta on todellakin vaikea löytää mistään muualta.</p>		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener noreferrer\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener noreferrer\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','publish','closed','closed','','home','','','2021-06-21 05:54:44','2021-06-21 05:54:44','',0,'http://sadepisaroitaniitynkukkasilla.fi/?page_id=5',0,'page','',0),(6,1,'2021-04-15 04:01:21','2021-04-15 04:01:21','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:01:21','2021-04-15 04:01:21','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=6',0,'revision','',0),(8,1,'2021-04-15 04:02:03','2021-04-15 04:02:03','','Default Kit','','publish','closed','closed','','default-kit','','','2021-04-15 05:47:18','2021-04-15 05:47:18','',0,'http://sadepisaroitaniitynkukkasilla.fi/?elementor_library=default-kit',0,'elementor_library','',0),(9,1,'2021-04-15 04:03:31','2021-04-15 04:03:31','','Men\'s Cosmetics','','publish','closed','closed','','mens-cosmetics','','','2021-04-15 04:03:31','2021-04-15 04:03:31','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=9',0,'envato_tk_import','',0),(10,1,'2021-04-15 04:04:14','2021-04-15 04:04:14','','pexels-photo-3031397.jpeg','','inherit','closed','closed','','pexels-photo-3031397-jpeg','','','2021-04-15 04:04:14','2021-04-15 04:04:14','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/pexels-photo-3031397.jpeg',0,'attachment','image/jpeg',0),(11,1,'2021-04-15 04:04:15','2021-04-15 04:04:15','','bg.png','','inherit','closed','closed','','bg-png','','','2021-04-15 04:04:15','2021-04-15 04:04:15','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/bg.png',0,'attachment','image/png',0),(12,1,'2021-04-15 04:04:15','2021-04-15 04:04:15','','prod-5.png','','inherit','closed','closed','','prod-5-png','','','2021-04-15 04:04:15','2021-04-15 04:04:15','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-5.png',0,'attachment','image/png',0),(13,1,'2021-04-15 04:04:16','2021-04-15 04:04:16','','pexels-photo-3031395.jpeg','','inherit','closed','closed','','pexels-photo-3031395-jpeg','','','2021-04-15 04:04:16','2021-04-15 04:04:16','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/pexels-photo-3031395.jpeg',0,'attachment','image/jpeg',0),(14,1,'2021-04-15 04:04:16','2021-04-15 04:04:16','','evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg','','inherit','closed','closed','','evan-dvorkin-flhnc9s_ue8-unsplash-gallery-jpg','','','2021-04-15 04:04:16','2021-04-15 04:04:16','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/evan-dvorkin-FLhnC9S_UE8-unsplash-gallery.jpg',0,'attachment','image/jpeg',0),(15,1,'2021-04-15 04:04:17','2021-04-15 04:04:17','','prod-4.png','','inherit','closed','closed','','prod-4-png','','','2021-04-15 04:04:17','2021-04-15 04:04:17','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-4.png',0,'attachment','image/png',0),(16,1,'2021-04-15 04:04:18','2021-04-15 04:04:18','','prod-6.png','','inherit','closed','closed','','prod-6-png','','','2021-04-15 04:04:18','2021-04-15 04:04:18','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-6.png',0,'attachment','image/png',0),(17,1,'2021-04-15 04:04:19','2021-04-15 04:04:19','','prod-8.png','','inherit','closed','closed','','prod-8-png','','','2021-04-15 04:04:19','2021-04-15 04:04:19','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-8.png',0,'attachment','image/png',0),(18,1,'2021-04-15 04:04:19','2021-04-15 04:04:19','','prod-10.png','','inherit','closed','closed','','prod-10-png','','','2021-04-15 04:04:19','2021-04-15 04:04:19','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-10.png',0,'attachment','image/png',0),(19,1,'2021-04-15 04:04:20','2021-04-15 04:04:20','','jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg','','inherit','closed','closed','','jens-lindner-dp6g1yjwqca-unsplash-gallery-jpg','','','2021-04-15 04:04:20','2021-04-15 04:04:20','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/jens-lindner-dP6g1YJWQcA-unsplash-gallery.jpg',0,'attachment','image/jpeg',0),(20,1,'2021-04-15 04:04:21','2021-04-15 04:04:21','','sylvia-prats-KBB4Vt3yFgU-unsplash.jpg','','inherit','closed','closed','','sylvia-prats-kbb4vt3yfgu-unsplash-jpg','','','2021-04-15 04:04:21','2021-04-15 04:04:21','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/sylvia-prats-KBB4Vt3yFgU-unsplash.jpg',0,'attachment','image/jpeg',0),(21,1,'2021-04-15 04:04:22','2021-04-15 04:04:22','','albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg','','inherit','closed','closed','','albert-dera-le-y0k_q1ty-unsplash-gallery-jpg','','','2021-04-15 04:04:22','2021-04-15 04:04:22','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/albert-dera-le-Y0K_q1TY-unsplash-gallery.jpg',0,'attachment','image/jpeg',0),(22,1,'2021-04-15 04:04:23','2021-04-15 04:04:23','','prod-11.png','','inherit','closed','closed','','prod-11-png','','','2021-04-15 04:04:23','2021-04-15 04:04:23','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-11.png',0,'attachment','image/png',0),(23,1,'2021-04-15 04:04:25','2021-04-15 04:04:25','','placeholder.png','','inherit','closed','closed','','placeholder-png','','','2021-04-15 04:04:25','2021-04-15 04:04:25','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/placeholder.png',0,'attachment','image/png',0),(24,1,'2021-04-15 04:04:26','2021-04-15 04:04:26','<h1>men\'s</h1>		\n			<h1>cosmetics</h1>		\n			<h4>HEALTH & COSMETICS</h4>		\n			<h4>for men</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>SKINCARE</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-4.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-6.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-8.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-10.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home 2','','publish','closed','closed','','home-2','','','2021-04-15 04:04:26','2021-04-15 04:04:26','',0,'http://sadepisaroitaniitynkukkasilla.fi/?elementor_library=home-2',0,'elementor_library','',0),(25,1,'2021-04-15 04:04:26','2021-04-15 04:04:26','<h1>men\'s</h1>		\n			<h1>cosmetics</h1>		\n			<h4>HEALTH & COSMETICS</h4>		\n			<h4>for men</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>SKINCARE</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-4.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-6.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-8.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/prod-10.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home 2','','inherit','closed','closed','','24-revision-v1','','','2021-04-15 04:04:26','2021-04-15 04:04:26','',24,'http://sadepisaroitaniitynkukkasilla.fi/?p=25',0,'revision','',0),(26,1,'2021-04-15 04:05:11','2021-04-15 04:05:11','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:05:11','2021-04-15 04:05:11','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=26',0,'revision','',0),(27,1,'2021-04-15 04:05:11','2021-04-15 04:05:11','','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:05:11','2021-04-15 04:05:11','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=27',0,'revision','',0),(28,1,'2021-04-15 04:05:11','2021-04-15 04:05:11','<h1>men\'s</h1>		\n			<h1>cosmetics</h1>		\n			<h4>HEALTH & COSMETICS</h4>		\n			<h4>for men</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>SKINCARE</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:05:11','2021-04-15 04:05:11','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=28',0,'revision','',0),(29,1,'2021-04-15 04:05:20','2021-04-15 04:05:20','<h1>men\'s</h1>\n<h1>cosmetics</h1>\n<h4>HEALTH &amp; COSMETICS</h4>\n<h4>for men</h4>\n<a href=\"#start\">\n</a>\n<h2>SKINCARE</h2>\n<h4>SKINCARE &amp;</h4>\n<h4>SHAVING kit</h4>\n<a href=\"#\" role=\"button\">\nSHOP ONLINE\n</a>\n<a href=\"#\" role=\"button\">\nskincare range\n</a>\n<a href=\"#\" role=\"button\">\nwet shaving kits\n</a>\n<a href=\"#\" role=\"button\">\nelectric razors\n</a>\n<a href=\"#\" role=\"button\">\nhaircare &amp; gels\n</a>\n<a href=\"#\" role=\"button\">\npersonal hygiene\n</a>\n<a href=\"#\" role=\"button\">\ngym &amp; travel - sale\n</a>\n<a href=\"#\" role=\"button\">\ndiet &amp; detox\n</a>\n<a href=\"#\" role=\"button\">\nseasonal sale live\n</a>\n<h2>Shave &amp; SkinCARE</h2>\n<h4>new skin &amp; hair care</h4>\n<h4>for men</h4>\n<a href=\"#\" role=\"button\">\nVIEW PRODUCTS\n</a>\n<h2>beard &amp; hairCARE</h2>\n<h4>new HAIR &amp; SKIN care</h4>\n<h4>for men</h4>\n<a href=\"#\" role=\"button\">\nVIEW PRODUCTS\n</a>\n<h2>BATH &amp; SHOWER KITS</h2>\n<h4>ELECTRIC RAZORS &amp;</h4>\n<h4>SHAVING kitS</h4>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.\n\nDonec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.\n\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<h2>FACE &amp; SKINCARE</h2>\n<h4>TAKE GOOD CARE</h4>\n<h4>OF YOURSELF</h4>\n<a href=\"#\" role=\"button\">\nRETURNING CUSTOMERS\n</a>\n<a href=\"#\" role=\"button\">\nseasonal sale\n</a>\n<a href=\"#\" role=\"button\">\nskincare range\n</a>\n<a href=\"#\" role=\"button\">\nhaircare &amp; gels\n</a>\n<a href=\"#\" role=\"button\">\nwet shaving kits\n</a>\n<h2>20% discount</h2>\n<a href=\"#\" role=\"button\">\nADVERT\n</a>\n<h2>for new &amp; existing customers - ends december</h2>\n<a href=\"#\" role=\"button\">\nshop online\n</a>\n<h3>rewards</h3>\n<h2>for new &amp; existing customers</h2>\n<a href=\"#\" role=\"button\">\nsee points\n</a>\n<h2>BIG SAVINGS</h2>\n<h2>for new &amp; existing customers</h2>\n<a href=\"#\" role=\"button\">\nshop online\n</a>\n<h2>SAVE 20% fall SALE!</h2>\n<h4>ELECTRIC RAZORS &amp;</h4>\n<h4>SHAVING kitS</h4>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;\n\n<a href=\"#\" role=\"button\">\nuse code <em> fallskin19<em>\n</em></em></a>\n\n<em><em>\n<h2>EXCLUSIVE DEAL</h2>\n<h4>EXCLUSIVE PROMOTIONS</h4>\n<h4>&amp; DISCOUNTS</h4>\n<a href=\"#\" role=\"button\">\nSIGN UP NOW\n</a>\n<a target=\"_blank\" rel=\"noopener\">\nFacebook\n</a>\n<a target=\"_blank\" rel=\"noopener\">\nTwitter\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\">\nYelp\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\">\nWhatsapp\n</a>\n<a href=\"#start\">\n</a>\n\n</em></em>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:05:20','2021-04-15 04:05:20','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=29',0,'revision','',0),(30,1,'2021-04-15 04:05:29','2021-04-15 04:05:29','','Blog','','publish','closed','closed','','blog','','','2021-04-15 04:05:29','2021-04-15 04:05:29','',0,'http://sadepisaroitaniitynkukkasilla.fi/?page_id=30',0,'page','',0),(31,1,'2021-04-15 04:05:29','2021-04-15 04:05:29','','Blog','','inherit','closed','closed','','30-revision-v1','','','2021-04-15 04:05:29','2021-04-15 04:05:29','',30,'http://sadepisaroitaniitynkukkasilla.fi/?p=31',0,'revision','',0),(32,1,'2021-04-15 04:07:35','2021-04-15 04:07:35','<h1>men\'s</h1>\n<h1>cosmetics</h1>\n<h4>HEALTH &amp; COSMETICS</h4>\n<h4>for men</h4>\n<a href=\"#start\">\n</a>\n<h2>SKINCARE</h2>\n<h4>SKINCARE &amp;</h4>\n<h4>SHAVING kit</h4>\n<a href=\"#\" role=\"button\">\nSHOP ONLINE\n</a>\n<a href=\"#\" role=\"button\">\nskincare range\n</a>\n<a href=\"#\" role=\"button\">\nwet shaving kits\n</a>\n<a href=\"#\" role=\"button\">\nelectric razors\n</a>\n<a href=\"#\" role=\"button\">\nhaircare &amp; gels\n</a>\n<a href=\"#\" role=\"button\">\npersonal hygiene\n</a>\n<a href=\"#\" role=\"button\">\ngym &amp; travel - sale\n</a>\n<a href=\"#\" role=\"button\">\ndiet &amp; detox\n</a>\n<a href=\"#\" role=\"button\">\nseasonal sale live\n</a>\n<h2>Shave &amp; SkinCARE</h2>\n<h4>new skin &amp; hair care</h4>\n<h4>for men</h4>\n<a href=\"#\" role=\"button\">\nVIEW PRODUCTS\n</a>\n<h2>beard &amp; hairCARE</h2>\n<h4>new HAIR &amp; SKIN care</h4>\n<h4>for men</h4>\n<a href=\"#\" role=\"button\">\nVIEW PRODUCTS\n</a>\n<h2>BATH &amp; SHOWER KITS</h2>\n<h4>ELECTRIC RAZORS &amp;</h4>\n<h4>SHAVING kitS</h4>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.\n\nDonec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.\n\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<h2>FACE &amp; SKINCARE</h2>\n<h4>TAKE GOOD CARE</h4>\n<h4>OF YOURSELF</h4>\n<a href=\"#\" role=\"button\">\nRETURNING CUSTOMERS\n</a>\n<a href=\"#\" role=\"button\">\nseasonal sale\n</a>\n<a href=\"#\" role=\"button\">\nskincare range\n</a>\n<a href=\"#\" role=\"button\">\nhaircare &amp; gels\n</a>\n<a href=\"#\" role=\"button\">\nwet shaving kits\n</a>\n<h2>20% discount</h2>\n<a href=\"#\" role=\"button\">\nADVERT\n</a>\n<h2>for new &amp; existing customers - ends december</h2>\n<a href=\"#\" role=\"button\">\nshop online\n</a>\n<h3>rewards</h3>\n<h2>for new &amp; existing customers</h2>\n<a href=\"#\" role=\"button\">\nsee points\n</a>\n<h2>BIG SAVINGS</h2>\n<h2>for new &amp; existing customers</h2>\n<a href=\"#\" role=\"button\">\nshop online\n</a>\n<h2>SAVE 20% fall SALE!</h2>\n<h4>ELECTRIC RAZORS &amp;</h4>\n<h4>SHAVING kitS</h4>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;\n\n<a href=\"#\" role=\"button\">\nuse code <em> fallskin19<em>\n</em></em></a>\n\n<em><em>\n<h2>EXCLUSIVE DEAL</h2>\n<h4>EXCLUSIVE PROMOTIONS</h4>\n<h4>&amp; DISCOUNTS</h4>\n<a href=\"#\" role=\"button\">\nSIGN UP NOW\n</a>\n<a target=\"_blank\" rel=\"noopener\">\nFacebook\n</a>\n<a target=\"_blank\" rel=\"noopener\">\nTwitter\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\">\nYelp\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\">\nWhatsapp\n</a>\n<a href=\"#start\">\n</a>\n\n</em></em>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:07:35','2021-04-15 04:07:35','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=32',0,'revision','',0),(33,1,'2021-04-15 04:07:35','2021-04-15 04:07:35','<h1>men\'s</h1>\n<h1>cosmetics</h1>\n<h4>HEALTH &amp; COSMETICS</h4>\n<h4>for men</h4>\n<a href=\"#start\">\n</a>\n<h2>SKINCARE</h2>\n<h4>SKINCARE &amp;</h4>\n<h4>SHAVING kit</h4>\n<a href=\"#\" role=\"button\">\nSHOP ONLINE\n</a>\n<a href=\"#\" role=\"button\">\nskincare range\n</a>\n<a href=\"#\" role=\"button\">\nwet shaving kits\n</a>\n<a href=\"#\" role=\"button\">\nelectric razors\n</a>\n<a href=\"#\" role=\"button\">\nhaircare &amp; gels\n</a>\n<a href=\"#\" role=\"button\">\npersonal hygiene\n</a>\n<a href=\"#\" role=\"button\">\ngym &amp; travel - sale\n</a>\n<a href=\"#\" role=\"button\">\ndiet &amp; detox\n</a>\n<a href=\"#\" role=\"button\">\nseasonal sale live\n</a>\n<h2>Shave &amp; SkinCARE</h2>\n<h4>new skin &amp; hair care</h4>\n<h4>for men</h4>\n<a href=\"#\" role=\"button\">\nVIEW PRODUCTS\n</a>\n<h2>beard &amp; hairCARE</h2>\n<h4>new HAIR &amp; SKIN care</h4>\n<h4>for men</h4>\n<a href=\"#\" role=\"button\">\nVIEW PRODUCTS\n</a>\n<h2>BATH &amp; SHOWER KITS</h2>\n<h4>ELECTRIC RAZORS &amp;</h4>\n<h4>SHAVING kitS</h4>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.\n\nDonec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.\n\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\">\n<a href=\"#\" role=\"button\">\nDetails\n</a>\n<a href=\"#\" role=\"button\">\nORDER\n</a>\n<h2>FACE &amp; SKINCARE</h2>\n<h4>TAKE GOOD CARE</h4>\n<h4>OF YOURSELF</h4>\n<a href=\"#\" role=\"button\">\nRETURNING CUSTOMERS\n</a>\n<a href=\"#\" role=\"button\">\nseasonal sale\n</a>\n<a href=\"#\" role=\"button\">\nskincare range\n</a>\n<a href=\"#\" role=\"button\">\nhaircare &amp; gels\n</a>\n<a href=\"#\" role=\"button\">\nwet shaving kits\n</a>\n<h2>20% discount</h2>\n<a href=\"#\" role=\"button\">\nADVERT\n</a>\n<h2>for new &amp; existing customers - ends december</h2>\n<a href=\"#\" role=\"button\">\nshop online\n</a>\n<h3>rewards</h3>\n<h2>for new &amp; existing customers</h2>\n<a href=\"#\" role=\"button\">\nsee points\n</a>\n<h2>BIG SAVINGS</h2>\n<h2>for new &amp; existing customers</h2>\n<a href=\"#\" role=\"button\">\nshop online\n</a>\n<h2>SAVE 20% fall SALE!</h2>\n<h4>ELECTRIC RAZORS &amp;</h4>\n<h4>SHAVING kitS</h4>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;\n\n<a href=\"#\" role=\"button\">\nuse code <em> fallskin19<em>\n</em></em></a>\n\n<em><em>\n<h2>EXCLUSIVE DEAL</h2>\n<h4>EXCLUSIVE PROMOTIONS</h4>\n<h4>&amp; DISCOUNTS</h4>\n<a href=\"#\" role=\"button\">\nSIGN UP NOW\n</a>\n<a target=\"_blank\" rel=\"noopener\">\nFacebook\n</a>\n<a target=\"_blank\" rel=\"noopener\">\nTwitter\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\">\nYelp\n</a>\n<a href=\"#\" target=\"_blank\" rel=\"noopener\">\nWhatsapp\n</a>\n<a href=\"#start\">\n</a>\n\n</em></em>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:07:35','2021-04-15 04:07:35','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=33',0,'revision','',0),(34,1,'2021-04-15 04:07:35','2021-04-15 04:07:35','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>SKINCARE</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:07:35','2021-04-15 04:07:35','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=34',0,'revision','',0),(35,1,'2021-04-15 04:11:01','2021-04-15 04:11:01','','madhen-1773911_1920','','inherit','closed','closed','','madhen-1773911_1920','','','2021-04-15 04:11:01','2021-04-15 04:11:01','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/madhen-1773911_1920.jpg',0,'attachment','image/jpeg',0),(37,1,'2021-04-15 04:23:55','2021-04-15 04:23:55','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>SKINCARE</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:23:55','2021-04-15 04:23:55','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=37',0,'revision','',0),(38,1,'2021-04-15 04:23:55','2021-04-15 04:23:55','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>SKINCARE</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:23:55','2021-04-15 04:23:55','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=38',0,'revision','',0),(39,1,'2021-04-15 04:23:55','2021-04-15 04:23:55','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:23:55','2021-04-15 04:23:55','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=39',0,'revision','',0),(41,1,'2021-04-15 04:27:19','2021-04-15 04:27:19','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:27:19','2021-04-15 04:27:19','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=41',0,'revision','',0),(42,1,'2021-04-15 04:27:19','2021-04-15 04:27:19','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>BATH & SHOWER KITS</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:27:19','2021-04-15 04:27:19','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=42',0,'revision','',0),(43,1,'2021-04-15 04:27:19','2021-04-15 04:27:19','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:27:19','2021-04-15 04:27:19','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=43',0,'revision','',0),(45,1,'2021-04-15 04:42:22','2021-04-15 04:42:22','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:42:22','2021-04-15 04:42:22','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=45',0,'revision','',0),(46,1,'2021-04-15 04:42:22','2021-04-15 04:42:22','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p>Donec et urna et tortor condimentum elementum ut ac metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec non tortor ante. Integer scelerisque aliquet mi at rhoncus. Nulla lacinia sagittis tellus, vel condimentum odio laoreet vel. Fusce tempor sapien diam, in scelerisque ex tincidunt ac. Sed semper nunc vitae lacus viverra, sit amet luctus eros iaculis. Vestibulum faucibus quam sit amet dolor tristique varius. Etiam sit amet congue ligula, et placerat ex. Etiam sit amet risus ultricies, iaculis lectus sed, iaculis sem.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-8-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-8.png\" alt=\"prod-8.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-10-p5qiau2re4xa97kk9wkj5pf5s5egt0ghyg0d5cpiys.png\" title=\"prod-10.png\" alt=\"prod-10.png\" />											\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<a href=\"#\" role=\"button\">\n						ORDER\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:42:22','2021-04-15 04:42:22','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=46',0,'revision','',0),(47,1,'2021-04-15 04:42:22','2021-04-15 04:42:22','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:42:22','2021-04-15 04:42:22','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=47',0,'revision','',0),(48,1,'2021-04-15 04:42:59','2021-04-15 04:42:59','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:42:59','2021-04-15 04:42:59','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=48',0,'revision','',0),(49,1,'2021-04-15 04:42:59','2021-04-15 04:42:59','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:42:59','2021-04-15 04:42:59','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=49',0,'revision','',0),(50,1,'2021-04-15 04:42:59','2021-04-15 04:42:59','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 04:42:59','2021-04-15 04:42:59','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=50',0,'revision','',0),(51,1,'2021-04-15 04:59:06','2021-04-15 04:59:06','','girls-1828539_1920','','inherit','closed','closed','','girls-1828539_1920','','','2021-04-15 04:59:06','2021-04-15 04:59:06','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/girls-1828539_1920.jpg',0,'attachment','image/jpeg',0),(52,1,'2021-04-15 05:00:34','2021-04-15 05:00:34','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:00:34','2021-04-15 05:00:34','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=52',0,'revision','',0),(53,1,'2021-04-15 05:00:34','2021-04-15 05:00:34','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>Shave &amp; SkinCARE</h2>		\n			<h4>new skin & hair care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>beard &amp; hairCARE</h2>		\n			<h4>new HAIR & SKIN care</h4>		\n			<h4>for men</h4>		\n			<a href=\"#\" role=\"button\">\n						VIEW PRODUCTS\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:00:34','2021-04-15 05:00:34','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=53',0,'revision','',0),(54,1,'2021-04-15 05:00:34','2021-04-15 05:00:34','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:00:34','2021-04-15 05:00:34','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=54',0,'revision','',0),(55,1,'2021-04-15 05:02:16','2021-04-15 05:02:16','','woman-1536747_1920','','inherit','closed','closed','','woman-1536747_1920','','','2021-04-15 05:02:16','2021-04-15 05:02:16','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/woman-1536747_1920.jpg',0,'attachment','image/jpeg',0),(56,1,'2021-04-15 05:02:54','2021-04-15 05:02:54','','girl-996450_1920','','inherit','closed','closed','','girl-996450_1920','','','2021-04-15 05:02:54','2021-04-15 05:02:54','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/girl-996450_1920.jpg',0,'attachment','image/jpeg',0),(57,1,'2021-04-15 05:04:02','2021-04-15 05:04:02','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:04:02','2021-04-15 05:04:02','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=57',0,'revision','',0),(58,1,'2021-04-15 05:04:02','2021-04-15 05:04:02','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-4-p5qias730guplznakvra0pw8ldnqdm91a6pe6ssbb8.png\" title=\"prod-4.png\" alt=\"prod-4.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:04:02','2021-04-15 05:04:02','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=58',0,'revision','',0),(59,1,'2021-04-15 05:04:02','2021-04-15 05:04:02','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:04:02','2021-04-15 05:04:02','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=59',0,'revision','',0),(60,1,'2021-04-15 05:04:46','2021-04-15 05:04:46','','womens-1594288_1920','','inherit','closed','closed','','womens-1594288_1920','','','2021-04-15 05:04:46','2021-04-15 05:04:46','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/womens-1594288_1920.jpg',0,'attachment','image/jpeg',0),(61,1,'2021-04-15 05:04:52','2021-04-15 05:04:52','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:04:52','2021-04-15 05:04:52','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=61',0,'revision','',0),(62,1,'2021-04-15 05:04:52','2021-04-15 05:04:52','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/prod-6-p5qiat4x7avzxllxfe5wl7np6rj3lbcrmbcvo2qx50.png\" title=\"prod-6.png\" alt=\"prod-6.png\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:04:52','2021-04-15 05:04:52','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=62',0,'revision','',0),(63,1,'2021-04-15 05:04:52','2021-04-15 05:04:52','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:04:52','2021-04-15 05:04:52','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=63',0,'revision','',0),(64,1,'2021-04-15 05:05:25','2021-04-15 05:05:25','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:05:25','2021-04-15 05:05:25','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=64',0,'revision','',0),(65,1,'2021-04-15 05:05:25','2021-04-15 05:05:25','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>ELECTRIC RAZORS &</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						Details\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:05:25','2021-04-15 05:05:25','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=65',0,'revision','',0),(66,1,'2021-04-15 05:05:25','2021-04-15 05:05:25','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:05:25','2021-04-15 05:05:25','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=66',0,'revision','',0),(67,1,'2021-04-15 05:05:56','2021-04-15 05:05:56','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:05:56','2021-04-15 05:05:56','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=67',0,'revision','',0),(68,1,'2021-04-15 05:05:56','2021-04-15 05:05:56','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:05:56','2021-04-15 05:05:56','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=68',0,'revision','',0),(69,1,'2021-04-15 05:05:56','2021-04-15 05:05:56','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:05:56','2021-04-15 05:05:56','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=69',0,'revision','',0),(70,1,'2021-04-15 05:10:52','2021-04-15 05:10:52','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:10:52','2021-04-15 05:10:52','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=70',0,'revision','',0),(71,1,'2021-04-15 05:10:52','2021-04-15 05:10:52','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>SKINCARE &</h4>		\n			<h4>SHAVING kit</h4>		\n			<a href=\"#\" role=\"button\">\n						SHOP ONLINE\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>rewards</h3>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						see points\n					</a>\n			<h2>BIG SAVINGS</h2>		\n			<h2>for new & existing customers</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:10:52','2021-04-15 05:10:52','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=71',0,'revision','',0),(72,1,'2021-04-15 05:10:52','2021-04-15 05:10:52','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:10:52','2021-04-15 05:10:52','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=72',0,'revision','',0),(73,1,'2021-04-15 05:12:55','2021-04-15 05:12:55','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:12:55','2021-04-15 05:12:55','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=73',0,'revision','',0),(74,1,'2021-04-15 05:12:55','2021-04-15 05:12:55','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						skincare range\n					</a>\n			<a href=\"#\" role=\"button\">\n						wet shaving kits\n					</a>\n			<a href=\"#\" role=\"button\">\n						electric razors\n					</a>\n			<a href=\"#\" role=\"button\">\n						haircare & gels\n					</a>\n			<a href=\"#\" role=\"button\">\n						personal hygiene\n					</a>\n			<a href=\"#\" role=\"button\">\n						gym & travel - sale\n					</a>\n			<a href=\"#\" role=\"button\">\n						diet & detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						seasonal sale live\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:12:55','2021-04-15 05:12:55','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=74',0,'revision','',0),(75,1,'2021-04-15 05:12:55','2021-04-15 05:12:55','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:12:55','2021-04-15 05:12:55','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=75',0,'revision','',0),(76,1,'2021-04-15 05:13:11','2021-04-15 05:13:11','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:13:11','2021-04-15 05:13:11','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=76',0,'revision','',0),(77,1,'2021-04-15 05:13:11','2021-04-15 05:13:11','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>SAVE 20% fall SALE!</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:13:11','2021-04-15 05:13:11','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=77',0,'revision','',0),(78,1,'2021-04-15 05:13:11','2021-04-15 05:13:11','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:13:11','2021-04-15 05:13:11','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=78',0,'revision','',0),(79,1,'2021-04-15 05:15:49','2021-04-15 05:15:49','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:15:49','2021-04-15 05:15:49','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=79',0,'revision','',0),(80,1,'2021-04-15 05:15:49','2021-04-15 05:15:49','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>ELECTRIC RAZORS &</h4>		\n			<h4>SHAVING kitS</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:15:49','2021-04-15 05:15:49','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=80',0,'revision','',0),(81,1,'2021-04-15 05:15:49','2021-04-15 05:15:49','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hey Everyone, </p><p>Thanks for taking time in visitng my website! I\'m Jenni a </p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:15:49','2021-04-15 05:15:49','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=81',0,'revision','',0),(82,1,'2021-04-15 05:15:56','2021-04-15 05:15:56','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hey Everyone, </p><p>Thanks for taking time in visitng my website! I\'m Jenni a </p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:15:56','2021-04-15 05:15:56','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=82',0,'revision','',0),(83,1,'2021-04-15 05:15:56','2021-04-15 05:15:56','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hey Everyone, </p><p>Thanks for taking time in visitng my website! I\'m Jenni a </p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:15:56','2021-04-15 05:15:56','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=83',0,'revision','',0),(84,1,'2021-04-15 05:15:56','2021-04-15 05:15:56','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hey Everyone, </p><p>Thanks for taking time in visitng my website! I\'m Jenni a </p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:15:56','2021-04-15 05:15:56','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=84',0,'revision','',0),(85,1,'2021-04-15 05:24:41','2021-04-15 05:24:41','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hey Everyone, </p><p>Thanks for taking time in visitng my website! I\'m Jenni a </p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:24:41','2021-04-15 05:24:41','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=85',0,'revision','',0),(86,1,'2021-04-15 05:24:41','2021-04-15 05:24:41','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hey Everyone, </p><p>Thanks for taking time in visitng my website! I\'m Jenni a </p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed or are rhoncus eleifend. Integer ornare, libero et faucibus pellent sque, metus tellus condim ntum felis, sed feugiat felis lorem ut dui.&nbsp;</p>\n<p></p>		\n			<a href=\"#\" role=\"button\">\n						use code <em> fallskin19<em>\n					</a>\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:24:41','2021-04-15 05:24:41','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=86',0,'revision','',0),(87,1,'2021-04-15 05:24:41','2021-04-15 05:24:41','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:24:41','2021-04-15 05:24:41','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=87',0,'revision','',0),(88,1,'2021-04-15 05:26:19','2021-04-15 05:26:19','','womans-day-4390452_1920','','inherit','closed','closed','','womans-day-4390452_1920','','','2021-04-15 05:26:19','2021-04-15 05:26:19','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/womans-day-4390452_1920.jpg',0,'attachment','image/jpeg',0),(90,1,'2021-04-15 05:28:48','2021-04-15 05:28:48','','face-3675651_1920','','inherit','closed','closed','','face-3675651_1920','','','2021-08-18 08:38:38','2021-08-18 08:38:38','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/face-3675651_1920.jpg',0,'attachment','image/jpeg',0),(91,1,'2021-04-15 05:29:08','2021-04-15 05:29:08','','portrait-3595183_1280','','inherit','closed','closed','','portrait-3595183_1280','','','2021-04-15 05:29:08','2021-04-15 05:29:08','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/portrait-3595183_1280.jpg',0,'attachment','image/jpeg',0),(92,1,'2021-04-15 05:37:50','2021-04-15 05:37:50','','bg-img','','inherit','closed','closed','','bg-img','','','2021-04-15 05:37:50','2021-04-15 05:37:50','',5,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/bg-img.jpg',0,'attachment','image/jpeg',0),(93,1,'2021-04-15 05:38:40','2021-04-15 05:38:40','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:38:40','2021-04-15 05:38:40','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=93',0,'revision','',0),(94,1,'2021-04-15 05:38:40','2021-04-15 05:38:40','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:38:40','2021-04-15 05:38:40','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=94',0,'revision','',0),(95,1,'2021-04-15 05:38:40','2021-04-15 05:38:40','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:38:40','2021-04-15 05:38:40','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=95',0,'revision','',0),(96,1,'2021-04-15 05:40:18','2021-04-15 05:40:18','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:40:18','2021-04-15 05:40:18','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=96',0,'revision','',0),(97,1,'2021-04-15 05:40:18','2021-04-15 05:40:18','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>20% discount</h2>		\n			<a href=\"#\" role=\"button\">\n						ADVERT\n					</a>\n			<h2>for new & existing customers - ends december</h2>		\n			<a href=\"#\" role=\"button\">\n						shop online\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:40:18','2021-04-15 05:40:18','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=97',0,'revision','',0),(98,1,'2021-04-15 05:40:18','2021-04-15 05:40:18','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:40:18','2021-04-15 05:40:18','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=98',0,'revision','',0),(99,1,'2021-04-15 05:43:18','2021-04-15 05:43:18','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:43:18','2021-04-15 05:43:18','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=99',0,'revision','',0),(100,1,'2021-04-15 05:43:18','2021-04-15 05:43:18','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>EXCLUSIVE DEAL</h2>		\n			<h4>EXCLUSIVE PROMOTIONS</h4>		\n			<h4>& DISCOUNTS</h4>		\n			<a href=\"#\" role=\"button\">\n						SIGN UP NOW\n					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:43:18','2021-04-15 05:43:18','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=100',0,'revision','',0),(101,1,'2021-04-15 05:43:18','2021-04-15 05:43:18','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:43:18','2021-04-15 05:43:18','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=101',0,'revision','',0),(102,1,'2021-04-15 05:44:02','2021-04-15 05:44:02','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:44:02','2021-04-15 05:44:02','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=102',0,'revision','',0),(103,1,'2021-04-15 05:44:03','2021-04-15 05:44:03','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>FACE & SKINCARE</h2>		\n			<h4>TAKE GOOD CARE</h4>		\n			<h4>OF YOURSELF</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:44:03','2021-04-15 05:44:03','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=103',0,'revision','',0),(104,1,'2021-04-15 05:44:03','2021-04-15 05:44:03','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:44:03','2021-04-15 05:44:03','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=104',0,'revision','',0),(105,1,'2021-04-15 05:44:13','2021-04-15 05:44:13','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:44:13','2021-04-15 05:44:13','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=105',0,'revision','',0),(106,1,'2021-04-15 05:44:13','2021-04-15 05:44:13','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"#\" role=\"button\">\n						RETURNING CUSTOMERS\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:44:13','2021-04-15 05:44:13','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=106',0,'revision','',0),(107,1,'2021-04-15 05:44:14','2021-04-15 05:44:14','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						Blog\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-04-15 05:44:14','2021-04-15 05:44:14','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=107',0,'revision','',0),(109,1,'2021-04-15 05:45:20','2021-04-15 05:45:20','','Default Kit','','inherit','closed','closed','','8-revision-v1','','','2021-04-15 05:45:20','2021-04-15 05:45:20','',8,'http://sadepisaroitaniitynkukkasilla.fi/?p=109',0,'revision','',0),(113,1,'2021-04-15 05:57:07','2021-04-15 05:57:07','header .header-wrapper {\n    background-color: #000;\n}\n.top-menu .navigation>li>a {\n	color: #fff;\n}\nfooter#footer {\n    background: #000;\n    color: #555;\n}\nfooter {\n margin-top: 0px; \npadding-top: 0px;\n}','colon','','publish','closed','closed','','colon','','','2021-04-15 06:09:43','2021-04-15 06:09:43','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=113',0,'custom_css','',0),(114,1,'2021-04-15 05:57:07','2021-04-15 05:57:07','header .header-wrapper {\n    background-color: #000;\n}','colon','','inherit','closed','closed','','113-revision-v1','','','2021-04-15 05:57:07','2021-04-15 05:57:07','',113,'http://sadepisaroitaniitynkukkasilla.fi/?p=114',0,'revision','',0),(115,1,'2021-04-15 06:00:02','2021-04-15 06:00:02','','sad logo','','inherit','closed','closed','','sad-logo','','','2021-04-15 06:00:02','2021-04-15 06:00:02','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/sad-logo.png',0,'attachment','image/png',0),(117,1,'2021-04-15 06:03:50','2021-04-15 06:03:50','','sad fav','','inherit','closed','closed','','sad-fav','','','2021-04-15 06:03:50','2021-04-15 06:03:50','',0,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/sad-fav.png',0,'attachment','image/png',0),(120,1,'2021-04-15 06:06:59','2021-04-15 06:06:59','header .header-wrapper {\n    background-color: #000;\n}\n.top-menu .navigation>li>a {\n	color: #fff;\n}','colon','','inherit','closed','closed','','113-revision-v1','','','2021-04-15 06:06:59','2021-04-15 06:06:59','',113,'http://sadepisaroitaniitynkukkasilla.fi/?p=120',0,'revision','',0),(123,1,'2021-04-15 06:09:43','2021-04-15 06:09:43','header .header-wrapper {\n    background-color: #000;\n}\n.top-menu .navigation>li>a {\n	color: #fff;\n}\nfooter#footer {\n    background: #000;\n    color: #555;\n}\nfooter {\n margin-top: 0px; \npadding-top: 0px;\n}','colon','','inherit','closed','closed','','113-revision-v1','','','2021-04-15 06:09:43','2021-04-15 06:09:43','',113,'http://sadepisaroitaniitynkukkasilla.fi/?p=123',0,'revision','',0),(126,1,'2021-04-15 06:21:14','2021-04-15 06:11:26',' ','','','publish','closed','closed','','126','','','2021-04-15 06:21:14','2021-04-15 06:21:14','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=126',2,'nav_menu_item','',0),(127,1,'2021-04-15 06:21:14','2021-04-15 06:11:26',' ','','','publish','closed','closed','','127','','','2021-04-15 06:21:14','2021-04-15 06:21:14','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=127',1,'nav_menu_item','',0),(128,1,'2021-04-15 07:33:58','2021-04-15 07:33:58','<!-- wp:paragraph -->\n<p><br>Maailma puhuu nyt muodista - toivottavasti verkossa tai offline - näemme vain muodit ympärillämme! Useimpien ihmisten elämäntavan muuttuessa muoti on saanut suuren merkityksen tällä vuosikymmenellä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kovaa työtä olla minä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Fyysinen maailmamme on täynnä muotidiivejä, jotka esittävät uusimpia muotitrendejään ja houkuttelevat meitä samaan, kun taas virtuaalimaailmamme ovat ottaneet askeleita kohti lukemattomia muotiblogeja. Lisäksi verkkokaupan myötä - syömme, hengitämme, surffaamme, puhumme ja villitys! Muoti on yhtä hyvä kuin puhtaat verisolumme, joita ei voida erottaa fyysisyydestämme. Me sosiaalisina ihmisinä olemme melkein tottuneet liiallisen muodin esiintymiseen fyysisessä maailmassamme, mutta sellainen ei riitä, nyt on tullut hyvin pysyvä osa myös virtuaalimaailmamme, koska kaikissa muotiblogeissa käydään liikaa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Verkkokaupan ostaminen on viimeisin puhe joidenkin muotifriikkien keskuudessa, jotka rakastavat hiljentää äskettäin hankittuja muotitrendejä. Ihmiset ostavat yhä useammin verkossa kaikkia muotituotteita, joihin heillä ei ole pääsyä. Verkkokaupan avulla ihmiset voivat kirjaimellisesti ostaa tuotteita, jotka kuuluvat eri maahan kuin he, yhdellä napsautuksella. Ihmiset voivat nyt laittaa kätensä uusimpiin Pariisin suunnittelijavaatteisiin ja uusimpiin muotiasusteisiin Yhdysvalloista yhdellä napsautuksella. Ja siksi näemme yhä useammat ihmiset kohottavan elämäntyyliään ja sopeutumaan vallitseviin muotivirtauksiin vastaamaan muita, jotka ovat olleet osa muodimaailmaa siitä lähtien.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Tutkijat kehittivät verikokeen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vielä tärkeämpää on kuitenkin, että verkko on todistanut virtuaalimaailmamme valloittaneiden muotiblogien määrän jyrkän kasvun. Tilastojen mukaan on olemassa noin 4 uutta muotiblogia, jotka aloitetaan päivittäin tavoitteena vuotaa kaikkia tämän muotimaailman ihmisiä ja auttaa ihmisiä pysymään ajan tasalla muotitrendeistä. Tällaisten muotiblogien bloggaajat tulevat yleensä muotiteollisuudesta tai ovat läheisessä yhteydessä kyseiseen teollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kriitikot väittävät, että liiallinen muoti saa ihmiset tietämään paremmin, mitä heillä on yllään ja miten he kantavat itseään. Aikaisemmin tämä kaikki oli rajoitettua tai pikemminkin vain eliittiä ja julkkiksia, joiden täytyi näyttää hohdokkaalta. Mutta nyt kuume on levinnyt kaikkiin ihmisryhmiin, ja kaikki tämä on tällaisten muotiblogien velkaa. Tavallaan ei olisi väärin sanoa, että tällainen blogi tarjoaa joillekin muotimehiläisille joitain muotiideoita ja oivalluksia ja kannustaa heitä olemaan osa trendiä, mutta ennen kaikkea se on se, mitä he näkevät ympärillään ja pyrkimyksissään. sisäinen olento, kuten yksi niistä, jotka haluavat tulostaa artikkeleita ilmaiseksi, on se, mikä todella motivoi heitä ottamaan harppauksen paljon puhuttuun sanaan - \"muoti\"! ...</p>\n<!-- /wp:paragraph -->','Muotiblogit toimivat motivaattoreina!','','publish','closed','closed','','muotiblogit-toimivat-motivaattoreina','','','2023-12-11 11:09:41','2023-12-11 11:09:41','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=128',0,'post','',0),(129,1,'2021-04-15 07:34:19','2021-04-15 07:34:19','<!-- wp:paragraph -->\n<p><br>Ihmiset ajavat aina muotia kohti. Tämän päivän muodit ovat vanhentuneita huomenna, ja uudet ovat muodissa huomenna.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Joten ihmiset, varsinkin lapset rakastavat poimia uusimmat muodit heti, kun he saapuvat.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Mutta kun tarkastelemme muotitrendejä, alalla on tiettyjä trendejä asettavia yrityksiä, joiden on katsottava tietävän muotiteollisuuden uusimmista trendeistä. Muoti ja sinä olet yksi askel nähdäksesi kaikki yritykset, jotka asettavat muodin ja tyylien trendit ja uusimmat mallit. Tämä on Intiassa perustettu yksityinen muotiklubi, jolla on monia online-asiakkaita ympäri maata.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muoti ja annat altistumisen erilaisille huippumerkkeille, uusimmille muotitrendeille ja ylellisyydelle, malleille ja tyyleille. Yleisöstä voi tulla tämän yrityksen jäsen, joten he saavat jopa 80 prosentin alennuksen muihin vähittäiskauppoihin verrattuna. Jäsenet hyötyvät myynnistä, mukaan lukien näkymä uusimmista trendeistä, pääsyn yksityiskohtiin ja laadukkaiden tuotteiden ostamisesta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Muoti ei ole vain avoin lapsille, vaan myös intohimo kaiken ikäisille.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tässä mielessä muoti ja sinä tarjoavat tavan ostaa uusimpia hajusteita, sandaaleja, kosmetiikkatuotteita, kodin tuotteita ja muita tuotteita, jotta se voi vastata kaikkien ikäryhmien ja kaikkien ihmisryhmien tarpeisiin. Kaikki nämä tuotteet ovat jäsenten saatavilla 3 päivän ajan, joten he voivat nähdä ja päättää, jatkavatko ne sopimuksen ostamista. Kenenkään on helppo selata sivustoa, koska sivusto on erittäin käyttäjäystävällinen. Kauppa synkronoidaan tekstiviestillä ja sähköpostilla, joka siirretään jäsenelle heti, kun tarjous on lähetetty sivustolle, mikä helpottaa jäsenten päätöstä kaupasta heidän tarpeidensa ja mieltymystensä mukaan. Tarjotut alennukset eivät heikennä laatua, mikä on tämän online-muotiklubin menestyksen todellinen salaisuus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotijäsenyys ja sinun on helppo saada. Ei tarvitse kenenkään suositusta liittyä klubiin tai mitään maksettavaa klubijäsenyyttä. Klubijäsenyys on täysin ilmainen ja rekisteröinti voidaan tehdä verkossa. Ostaminen tänään vilkkailla kaduilla ei ole niin helppoa. Alan viimeisimmistä muodista on hyvin vaikea tietää myymälöiden myyntiedustajien välityksellä, koska kaupat ovat liian täynnä, mikä on myös viikonloppujen aikana. Tämä olisi parempi valinta kaikille, jotka haluavat olla ajan tasalla muodista ja tehdä vähemmän ostoksia. Uusimmat trendit ja muodit tuodaan meille kodeistamme mukavasti tämän verkkotrendiyrityksen kautta. Lisäksi uutta myyntiä ilmestyy 3 päivän välein, mikä on ystävällinen näkökohta, koska jäsenet voivat odottaa uusia tarjouksia. Jäsenten on kuitenkin myös kiirehdittävä sopimusten tekemistä, jotta kaupat voidaan tarjota jonopohjalta, eikä sopimukseen sisälly suosituksia tai linjauksia.</p>\n<!-- /wp:paragraph -->','Muoti ja olet paratiisi huippumerkkeille','','publish','closed','closed','','muoti-ja-olet-paratiisi-huippumerkkeille','','','2023-12-11 11:09:41','2023-12-11 11:09:41','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=129',0,'post','',0),(130,1,'2021-04-15 07:35:02','2021-04-15 07:35:02','<!-- wp:paragraph -->\n<p>Muoti voi olla päivittäinen tehtäväsi nuorelle tytölle. Mikä tahansa syy päästä kansainvälisen muodin maailmaan, viimeisimpien muotitrendien löytäminen ympäri maailmaa on välttämätöntä. Muotialan aloittelijat ovat aina uskoneet, että Yhdysvallat on useimpien maailman muotitrendien alkuperä, mutta ei. Italia tai Ranska voittaa Yhdysvaltoja uusimpien muotien suhteen. Saadaksesi lisätietoja viimeisimmistä trendeistä, voit saada paljon tietoa Fashion Week, Fashion Blogs ja Fashion -lehdistä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yhden kysymyksen pitäisi olla mielessäsi melko usein, koska kesä on täällä. Mitkä ovat viimeisimmät muotitrendit tänä kesänä? Kevyt, kirkas ja ihastuttava herkku mahdollisuuksiin ja ihastuttava lähestymistapa tänä kesänä, joka virallisesti saapuu kesäkuussa. Ihmiset voivat käyttää muotiideoitaan yhdessä uusimpien muotisuunnitelmien kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Uusimmat trendit muotielementit tänä kesänä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Androgeeninen: Klassiset räätälöidyt housut ja muodikkaat housut, joissa on \'helppo hennatakki\' ja rullatut hihat t-paidan päällä, sopivat erinomaisesti androgeeniseen ilmeeseen. Henkilölle, jolla on melko raskas keskiosa, tämä ilme sopii erinomaisesti naamioimaan kyseistä aluetta. Tämä ilme toimii täydellisesti missä tahansa ja tarjoaa paremman tuoton suosituimpiin tyyleihin sijoittamiseen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Läpinäkyvä: Haluatko tehdä melko naisellisen julistuksen tai viettelevän aistillisen? Läpinäkyvät tuotteet, joissa on läpikuultavia komponentteja, jotka syötetään lihan alaston sävyyn, olisi ihanteellinen valinta. Virkattuja ja leveitä pitsi-esineitä tai vaatteita, jotka on valmistettu kankaista, jotka voidaan muuntaa täysin tuoreiksi uusiksi ilmeiksi tulevana kesänä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Minimalismi: Hyvin yksinkertaisista luonnonmateriaaleista valmistetut, melko neutraalein värein valmistetut esineet ja mukavat linjat tarvitsevat tätä mahdollisuutta, kuten ne ovat olleet viime vuosina. Kaulukseton yläosa tai rakentamaton takki sekoitettuna paksuihin housuihin ja mukava suora t-paita voivat olla ihanteellinen asu nykyään. Kokeile tätä saadaksesi raikkaan, selkeän ilmeen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valkoinen: Vaatekaappisi ei olisi täydellinen ilman valkoisia elementtejä tänä vuonna. Aloita pään yläosasta jalkoihin, käytä valkoista tuoretta ulkoasua milloin tahansa tänä kesänä. Voit myös käyttää värikkäitä rohkeita ja fluoresoivia vaatteita sekä valkoisten kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stripes: Kuten vuoden 2011 Pariisin mallinäyttelyssä, Stripes tarvitsi tämän kauden. Niitä on tarjolla kaikkiin suuntiin, kaikki värityylit ja kaikki kaistanleveydet. Jos haluat suunnitella ulkoasusi heti, lisää vaatekaappiin raidallinen asu.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Denim- ja Baggy-housut: Jos haluat tehdä uuden, määritellyn muodin ilmoituksen, valitse Denim- tai Baggy-housut alakehollesi. Voit tehdä yhdistelmiä Chambray-t-paitojen, Coats Skinny -farkkujen, capri-leggingsien kanssa, ja luetteloa voidaan jatkaa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lisätarvikkeet: Pienillä muodilla voi olla suuri vaikutus koko ulkoasuun. Sekoitus rohkeita värejä, puutarhakukkia, raitoja ja suuntaus läpinäkyvyyteen sopii hyvin kevyiden, kirkkaiden ja muodikkaiden vaatteiden kanssa. Uuden ilmeen yhdistämiseksi käytä muutamia kenkiä lukuun ottamatta Lucite-ranneketta.</p>\n<!-- /wp:paragraph -->','Muotielementit tällä oikealla kesällä','','publish','closed','closed','','muotielementit-talla-oikealla-kesalla','','','2023-12-11 11:09:41','2023-12-11 11:09:41','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=130',0,'post','',0),(131,1,'2021-04-15 07:34:00','2021-04-15 07:34:00','<!-- wp:paragraph -->\n<p><br>Julkkikset ovat aina muotitrendien keskellä. Ei ole väliä, ovatko he luoneet ne vai seuranneet niitä, muotiasiantuntija Anne Niccoli pysyy julkkismuotien päällä ja tarjoaa muotivinkkejä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Keskustelu siitä, ajavatko julkkikset muotia vai ajaaako muoti julkkisvaatteita, hyvin samanlainen kuin vuosikymmenien ajan keskusteltu kana- ja munateoria. Itse asiassa ei ole väliä, onko tavoitteesi näyttää julkkisten arvoiselta. Internetistä on tullut tehokas väline välitöntä muotitutkimusta varten tuotemerkeistä ja tyyleistä, joita suosikki televisio- ja elokuvatähtemme käyttävät. Älykkäät muotiasiantuntijat voivat käyttää Internetiä vahvistamaan tunnistetut muotitrendit tai osoittamaan alkavan muodin alkua.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Minkälainen on se salaperäinen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Johtavana muotiasiantuntijana ja vähittäiskauppiaana suhtaudumme muotiin erittäin vakavasti, koska tavoitteemme on tarjota asiakkaille ratkaisuja, jotta he voivat pysyä trendissä, ei sen takana. Itse asiassa käytämme muotiblogiamme osoitteessa www.shopbeenvied.com välittömänä tapana kommunikoida muotitrendeistä, joita julkkikset näkevät paparatsokuvissa, olipa kyseessä sitten Melie Bianco -käsilaukut, uusi Sinful Tee tai A.B. korut. Niccoli. Shopbeenvied.com on huippuluokan muotijohtaja, joka tarjoaa koko Affliction-kokoelman. Tienraivaajina verkkokaupan maailmassa he ovat tehneet nimensä lyömällä trendejä ennen kuin ne räjähtivät. Olemme erikoistuneet tunnettujen huippusuunnittelijoiden uusimpiin muotivaatteisiin. Meillä on silmämme kaikesta julkkismuodista - haluamme aina nähdä, mitä julkkikset löytävät muotitrendeistä, joten sinun ei tarvitse.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Toinen tapa, jolla suhtaudun rooliin vähittäiskaupan muotiasiantuntijana, on sellaisten tuotteiden suunnittelu, joita muilla tuotemerkeillä ei ehkä ole tuotevalikoimassaan. Vaikka pysyn julkkisten muotitrendien kärjessä, myymälämme julkaisevat pian päivittäin uusia tuotteita Envy- ja Stash 129 -brändeillä, mikä on etu, jota harvoilla verkkokaupoilla on.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Nykyaikaisia ​​neuvoja näyttää ja tuntea itsensä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yksi näistä hyvistä tuotteista on tuote, joka on kehitetty auttamaan asiakkaitamme pysymään trendien kärjessä, olipa tavoitteesi bling rocktähti, boheemi, moottoripyörä tyylikäs vai hollywoodilainen glamour. Riippumatta muotitavoitteestasi, olemme osuneet härkäseinään alhaisimmilla hinnoilla, joiden avulla asiakkaat voivat ostaa muotivaatteita ja asusteita vain yhden tuotteen sijaan - me venytämme muotibudjettiasi! Olitpa kiinnostunut koettelemuksista, uusimmista syntisistä tuotteista, designkäsilaukkuista tai inspiroivista koruista, hintamme ovat parhaat, jotka löytyvät Internetistä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Kuten olen sanonut monta kertaa, tavoitteemme on ylittää odotuksesi ja me palvelemme vain asiantuntevinta muotihenkilöstöä. Julkaistavien artikkeleiden ja verkkosivustollamme kirjoitettujen blogien on tarkoitus jakaa uusimmat muotitiedot, jotta voit pysyä trendissä - ei vain myydä syntisiä, kärsimystä ja kateutta. Meillä on kuitenkin myös maksuttomia numeroita osoitteessa www.shopbeenvied.com vastaamaan kaikkiin muotikysymyksiin, joita et ehkä ole käsitellyt tämän viestinnän kautta. Tarjoamme esimerkiksi muotivihjeitä pitämään mustaa parhaana muotivalintana, kun olemme poissa talvesta ja olemme saattaneet saada muutaman kilon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Voimme myös ehdottaa värejä, kuten valkoisia ja keltaisia, välttämistä varten, jos yrität nähdä sensaatiomaista kesää, mutta et ole vielä siellä. Samoin kehosi muoto on tärkeä muuttuja, voimme auttaa korostamaan alueita, joihin haluat tehdä suurempia tai vähemmän alueita, jotka haluaisit näyttää pienemmiltä. Meillä on muotivinkkejä kaikille; ei ole väliä oletko plus- vai nollakoko. Kiitos, että käytit aikaa lukea artikkelini ja ota rohkeasti yhteyttä, jos sinulla on kysyttävää.</p>\n<!-- /wp:paragraph -->','Julkkismuodin asiantuntija','','publish','closed','closed','','julkkismuodin-asiantuntija','','','2023-12-11 11:09:41','2023-12-11 11:09:41','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=131',0,'post','',0),(132,1,'2021-04-15 07:35:08','2021-04-15 07:35:08','<!-- wp:paragraph -->\n<p><br>Ihmiset ajavat aina muotia kohti. Tämän päivän muodit ovat vanhentuneita huomenna, ja uudet ovat muodissa huomenna.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Joten ihmiset, varsinkin lapset rakastavat poimia uusimmat muodit heti, kun he saapuvat. Mutta kun tarkastelemme muotitrendejä, alalla on tiettyjä trendejä asettavia yrityksiä, joiden on katsottava tietävän muotiteollisuuden uusimmista trendeistä. Muoti ja sinä olet yksi askel nähdäksesi kaikki yritykset, jotka asettavat muodin ja tyylien trendit ja uusimmat mallit. Tämä on Intiassa perustettu yksityinen muotiklubi, jolla on monia online-asiakkaita ympäri maata.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muoti ja annat altistumisen erilaisille huippumerkkeille, uusimmille muotitrendeille ja ylellisyydelle, malleille ja tyyleille. Yleisöstä voi tulla tämän yrityksen jäsen, joten he saavat jopa 80 prosentin alennuksen muihin vähittäiskauppoihin verrattuna. Jäsenet hyötyvät myynnistä, mukaan lukien näkymä uusimmista trendeistä, pääsyn yksityiskohtiin ja laadukkaiden tuotteiden ostamisesta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Muoti ei ole vain avoin lapsille, vaan myös intohimo kaiken ikäisille.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tässä mielessä muoti ja sinä tarjoavat tavan ostaa uusimpia hajusteita, sandaaleja, kosmetiikkatuotteita, kodin tuotteita ja muita tuotteita, jotta se voi vastata kaikkien ikäryhmien ja kaikkien ihmisryhmien tarpeisiin. Kaikki nämä tuotteet ovat jäsenten saatavilla 3 päivän ajan, joten he voivat nähdä ja päättää, jatkavatko ne sopimuksen ostamista. Kenenkään on helppo selata sivustoa, koska sivusto on erittäin käyttäjäystävällinen. Kauppa synkronoidaan tekstiviestillä ja sähköpostilla, joka siirretään jäsenelle heti, kun tarjous on lähetetty sivustolle, mikä helpottaa jäsenten päätöstä kaupasta heidän tarpeidensa ja mieltymystensä mukaan. Tarjotut alennukset eivät heikennä laatua, mikä on tämän online-muotiklubin menestyksen todellinen salaisuus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Muotijäsenyys ja sinun on helppo saada.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ei tarvitse kenenkään suositusta liittyä klubiin tai mitään maksettavaa klubijäsenyyttä. Klubijäsenyys on täysin ilmainen ja rekisteröinti voidaan tehdä verkossa. Ostaminen tänään vilkkailla kaduilla ei ole niin helppoa. Alan viimeisimmistä muodista on hyvin vaikea tietää myymälöiden myyntiedustajien välityksellä, koska kaupat ovat liian täynnä, mikä on myös viikonloppujen aikana. Tämä olisi parempi valinta kaikille, jotka haluavat olla ajan tasalla muodista ja tehdä vähemmän ostoksia. Uusimmat trendit ja muodit tuodaan meille kodeistamme mukavasti tämän verkkotrendiyrityksen kautta. Lisäksi uutta myyntiä ilmestyy 3 päivän välein, mikä on ystävällinen näkökohta, koska jäsenet voivat odottaa uusia tarjouksia. Jäsenten on kuitenkin myös kiirehdittävä sopimusten tekemistä, jotta tarjoukset voidaan toimittaa luontotuotejonon alla, eikä sopimukseen sisälly suosituksia tai linjauksia.</p>\n<!-- /wp:paragraph -->','Muoti ja sinä - vaihtelu on elämän mauste','','publish','closed','closed','','muoti-ja-sina-vaihtelu-on-elaman-mauste','','','2023-12-11 11:09:41','2023-12-11 11:09:41','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=132',0,'post','',0),(133,1,'2021-04-15 07:35:04','2021-04-15 07:35:04','<!-- wp:paragraph -->\n<p><br>Nykypäivän nopeassa asteittaisessa muotitrendissä tietty tyyli on nopeasti saamassa suosiota Hollywoodin kuuluisuuksien keskuudessa, Boho-muoti. Tämä tyyli tunnetaan myös nimellä boheemi muoti, ja siihen vaikuttavat erilaiset hipi- ja boheemiyhdistelmät. Vaikka hän on matkustanut muotimaailmaan 90-luvun alkupuolelta lähtien, hän on toistuvasti esiintynyt erilaisissa hahmoissa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Boho-muoti</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nykypäivän nopeassa asteittaisessa muotitrendissä tietty tyyli on nopeasti saamassa suosiota Hollywoodin kuuluisuuksien keskuudessa, Boho-muoti. Tämä tyyli tunnetaan myös nimellä boheemi muoti, ja siihen vaikuttavat erilaiset hipi- ja boheemiyhdistelmät. Huolimatta siitä, että hän on matkustanut muotimaailmaan 90-luvun alkupuolelta lähtien, hän on toistuvasti esiintynyt uudelleen erilaisina hahmoina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Paitsi että tällainen asu on erittäin helppo valmistaa, Boho-muotiasiantuntijat ehdottavat, että boho-tyylin ilmaisemiseksi sinun ei tarvitse ostaa kalliita vaatteita. Vain oikea yhdistelmä yksinkertaisuutta, eleganssia ja itseluottamusta toimii. Valitse oikea yhdistelmä vaatteita, kenkiä, asusteita ja meikkiä varten, koska Bohemian Fashionista on nykyään tulossa enemmän mielentila kuin vain ulkonäkö tai \"muotitrendi, joka lopulta hiipuu ajassa\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Boho on kyse yksilöllisestä ja luonnollisesta näköisestä.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Kovaääniset sävyt ovat parhaita, sävyjä, kuten oranssi, vihreä ja purppura. Kukkaiset hameet ja paidat ovat upeita, mutta sinun ei tarvitse pukea vaatteita ollaksesi Boho. Kengät voivat vaihdella mieltymystesi mukaan. Sandaalit olisivat ilmeinen valinta, mutta jalkineilla varustetut saappaat ovat myös erittäin tyylikkäitä. Pidä hauskaa sen kanssa ja tee siitä hauska. Jos vaadit hiusten silittämistä hiuksillesi, anna sille hieman käyrä alareunassa sen sijaan, että menisit suoraan ylös emo- tai indie-tyyliin. Ajatuksena on saada se näyttämään luonnolliselta. Luonnolliset kiharat ovat hyviä tai jopa rautakiharat paranevat. Punokset ja afros ovat myös erittäin Boho. Boho on tärkein asia muistaa tarvikkeet. Tämä on ehkä kaikkein tärkein osa. Boho chic on synonyymi \"runsaille lisävarusteille\". Tämä tarkoittaa paljon rannekoruja, nilkkakoruja, sekoitettuja kaulakoruja ja roikkuvia korvakoruja. Se ei kuitenkaan lopu koruihin. Hiuksillesi löytyy pääpanta, pidikkeet ja tynnyri ja vyötärölle vyö. Mahdollisuudet ovat rajattomat. Varmista, että ne ovat todellinen osa vaatekaappiasi. Säteilyn tarkastelu on myös tekijä, älä laita tummaa huulipunaa värille, joka näyttää sinulle luonnolliselta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nykypäivän Boho-muodin seuraaminen on tapa ilmaista itseäsi ja olla yhteydessä maailmaan ja luontoon sekä koristella itseäsi rikkaimmilla kulttuurimaisilla. Tämän päivän globaali tietoisuus vahvistaa edelleen tämän tyyppistä muotia. Ole supermalli Kate Mossin kanssa ja ilmaise tuon boheemimainen tyyli sinussa.</p>\n<!-- /wp:paragraph -->','Tuo esiin Boho-muotitajusi','','publish','closed','closed','','tuo-esiin-boho-muotitajusi','','','2023-12-11 11:09:41','2023-12-11 11:09:41','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=133',0,'post','',0),(134,1,'2021-04-15 07:35:13','2021-04-15 07:35:13','<!-- wp:paragraph -->\n<p>Muotiteollisuus - Voitteko kertoa, mikä teollisuus oli pysäyttämätön myös pandemian aikana? Elintarvikkeita, päivittäistavaroita, terveyttä ja joitain tärkeitä valmistussektoreita lukuun ottamatta, muotimaailma on silloin tällöin yksi trendialoista. Ennen kuin pääset tähän, on oltava tietoinen siitä, miten päästä muotiteollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kuinka päästä muotiteollisuuteen - Termi itsessään on trendi nykymaailmassa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se on eräänlainen foorumi, joka muuttuu silloin tällöin väestön vaatimusten mukaan. Tämä on yksi vilkkaimmista sektoreista. Voisi sanoa, kuten joillakin muilla aloilla, tällä kentällä on oma viehätyksensä, joka myös lisää palveluntarjoajan tai siihen liittyvien ammattilaisten arvoa tai kysyntää. Jos luet tätä, etsit todennäköisesti ratkaisua - Kuinka päästä muotiteollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ennen kuin aloitat teollisuudelle, kysy itseltäsi, oletko koskaan kiinnostunut siitä, mitä olet käyttänyt, että suunnittelet vaatteita, kenkiä ja asusteita? Oletko henkilö, joka auttaa muita valitsemaan vaatteensa sopivilla lisävarusteilla täydellisen yhdistelmän valitsemiseksi? Luuletko, että luova ajattelusi, vahva viestintäsi tai taitosi voivat auttaa sinua löytämään menestystä? Jos kyllä, niin se kuulostaa melko siistiltä, ​​koska luovuus ja ainutlaatuiset strategiat ovat tärkeimpiä tässä nopeasti muuttuvassa trendissä. Ainoa mitä tarvitset, on teroittaa se asiantuntijan ohjauksella.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kuinka tulla muotisuunnittelijaksi?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Intian huippumuotisuunnittelutoimistona teemme kyselyn ja mittaamme mahdollisuuden tai mahdollisuuden sinulle. Muotiteollisuuteen pääseminen ei ole vain luovia ajatuksia tai ideoita. On vain monia käytännön tietoja, jotka voi antaa sinulle. Käytännön kokemuksen saaminen on paras tapa liittyä muotisuunnittelukurssille. Katsotaanpa muotisuunnittelijan perustarpeita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ryhdy sertifioiduksi henkilöksi - Jotta saat jalkasi tälle kilpailulle, saatat tarvita taitosi sertifikaatin. Tänä aikana saat paitsi todistuksen myös mahdollisuuden tutustua muodin historiaan, materiaaleihin, kuvapiirustukseen, kuvionvalmistukseen, teollisuuden käyttämään edistyneeseen tekniikkaan ja paljon muuta, jonka käsittelemme edelleen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valitse muotityyppi - Asiantuntijamme selittävät sinulle, mitä muoti todella on? Kyse ei ole vain vaatteista, alusta asti, vaatteet asusteisiin ovat kaikki muodissa. Joten sinun on tunnistettava erikoistumisesi tiettyyn aiheeseen tai muotiin. Sitten on aika päättää, mikä suunnittelualue on sinun eduksesi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Käytännön kokemus - Et ole epäilemättä kuullut, että harjoittelu tekee miehestä täydellisen. Ilman käytännön tietoa kukaan ei voi todistaa taitojaan vain teorian avulla. Ymmärrämme vapaan käden arvon tietyllä kurssilla, joten tarjoa paras käytännön koulutus opiskelijoille, jotka harjoittavat muotisuunnittelukurssia muotisuunnittelukoulutuslaitoksessamme. Laadusta, viestintätaidoista, liiketoiminnasta vaatteiden suunnitteluun saat todellisen kokemuksen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tutki muotiliiketoimintaa - Muotisuunnittelija ei tarkoita, että olet työntekijä muotiyrityksen alla. Saatat olla yrityksen omistaja, ja jotta voisit tulla muotiyrityksesi ammattitaitoiseksi omistajaksi, sinulla on oltava tiedot sen perustamiseksi ja sen sisältämät menettelyt. Tulevaisuutesi alusta alkaen annamme sinulle nopean yleiskatsauksen siitä, miten menestyä, ja näin se tuli muotiteollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>MUOTITEOLLISUUDEN MARKKINAT:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On totta, että muotiteollisuuden kasvu on hidastunut viime vuoteen verrattuna COVID: n ansiosta19. Mutta se olettaa myös, että se kasvaa lähitulevaisuudessa hyvällä numerolla, sanoi maanmittaaja. Tämä tutkimus ei ainoastaan ​​tarjoa ohjeita muotimarkkinoille, vaan auttaa myös muokkaamaan ja muuntamaan taloutta. Kuitenkin, jos aiot tarkastella raportteja, muotisegmentin ennustetaan saavuttavan 664 474 miljoonaa dollaria vuoteen 2020 mennessä ja paljon enemmän tulevina vuosina, näin se tulee muotiteollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Syyt uran valitsemiseen muodin teollisuudessa:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Jos olet ei-tekninen henkilö tässä teknologiamaailmassa, se on hieno. Monet luovat alat odottavat sinua, ja muotiteollisuus on yksi parhaista alustoista. Se on myös täydellinen portti ammatillisen elämän johtamiseen. Tämä on paras alue vähentää luovuutta. Tällä alalla saat mahdollisuuden saada vahva verkosto ja tavata alustasi asiantuntijoita. Voit elää elämääsi omalla mukavuudellasi.</p>\n<!-- /wp:paragraph -->','MITEN TULEVA MUOTITEOLLISUUTEEN','','publish','closed','closed','','miten-tuleva-muotiteollisuuteen','','','2023-12-11 11:09:41','2023-12-11 11:09:41','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=134',0,'post','',0),(135,1,'2021-04-15 07:35:06','2021-04-15 07:35:06','<!-- wp:paragraph -->\n<p><br>Ainoa asia muodin suhteen on muutos. Muoti muuttuu jatkuvasti ja sen seurauksena myös muoti tarpeemme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><br>Etsimme aina eniten ostettavia muotituotteita.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tietysti muodilla on hinta. Tähän asti verkkokaupat tulevat kuvaan. Verkkokauppa on vienyt ostokset ja muodin täysin eri tasolle ja muuttanut tavallisten ihmisten ostotapaa. Tämä on antanut ihmisille kaikkialta maailmasta mahdollisuuden tutustua uusimpiin muotiteollisuuden tarjoamiin tuotteisiin erittäin kilpailukykyiseen hintaan. Kansainväliset suunnittelijat ja muotitalot ovat onnistuneet lisäämään asiakaskuntaaan ja jakeluverkostoaan verkkosivustojensa kautta, jotka mahdollistavat verkkokaupan ja toimituksen. Web-sivustot, kuten FashionandOlet antanut kotibrändeille alustan esitellä heidän töitään ja esitellä sitä asiakkaille kaikkialla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>FashionandYou on yksi menestyneimmistä verkkosivustoja käsittelevistä verkkosivustoista.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Heillä on laaja valikoima tuotteita, jotka sopivat kaikille yleisöille. He säilyttävät kodikoristeita, lasten leluja ja vaatteita, mukaan lukien koulutusleluja, miesten ja naisten kelloja ja käsilaukkuja, kenkiä, asusteita ja vaatteita. Niissä on aina viimeisimmät muodit, ja ne päivittävät ja täydentävät jatkuvasti varastojaan. Tällä verkkosivustolla on erittäin helppo navigoida ja se on hyvä joku, joka haluaa tehdä ostoksia verkossa, mutta ei ole tekninen taju. Ne tarjoavat sinulle kaikki tuotetiedot, jotta voit verrata erilaisia ​​ja valita parhaan. Heillä on useita erilaisia ​​tuotemerkkejä suoraan suurista kansainvälisistä nimistä, kuten Police, DKNY ja United Colors of Benetton, sekä vaikuttavan luettelon talomerkkeistä. Heillä on hienoja sovelluksia, kuten toivelistavaihtoehto, jossa voit syöttää tuotemerkkejä, jotka haluat nähdä heidän verkkosivuillaan. Tämä antaa heille mahdollisuuden saada säännöllistä palautetta asiakkailta, ymmärtää paremmin heidän tarpeensa ja palvella heitä tehokkaammin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ostosten lisäksi tällä sivustolla voi viettää aikaa monilla muilla tavoilla. Voit käydä läpi heidän aikakauslehtiään, joka kertoo sinulle kaikki uusimmista muodista, tai lukea heidän muotiblogejaan, joissa puhutaan aina uusista ja erilaisista tavoista, joilla voit päivittää vaatekaapisi. Heidän \'saada katse\' -vaihtoehto auttaa sinua jäljittelemään suosikki muodikasta julkkisasi ja auttaa sinua löytämään budjettisi parhaiten sopivan. Niiden pikamyyntivaihtoehto antaa sinulle mahdollisuuden käyttää kaikkia heidän myyntikohteitaan suoraan tarvitsematta käydä läpi kaikkia tuotteita. Tämä on hieno ihmisille, joilla on vähän varaa rahaa, mutta jotka haluavat silti käyttää paljon. Heillä on hyviä tarjouksia ja alennuksia, joskus jopa 80%. Tämä tekee heistä valitsemansa ostoskohteen ympäri vuoden.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>FashionandYou on luonut myrskyn kyberavaruudessa lyhyessä ajassa. Verkkokaupoissa on kulunut jonkin aikaa Intiassa monista syistä. Tänään voimme kuitenkin ostaa melkein mitä tahansa verkosta. Kuumaa ruokaa, kukkia, onnittelukortteja, vaatteita, huonekaluja ja jopa taloja voi ostaa verkosta. Fashionandyou on asettanut uuden vertailuarvon vaatteiden ja muodin vähittäiskauppaa käsitteleville verkkosivustoille ja antanut kilpailulle jotain huolestuttavaa.</p>\n<!-- /wp:paragraph -->','Fashionandyou - kaikki asiat','','publish','closed','closed','','fashionandyou-kaikki-asiat','','','2023-12-11 11:09:41','2023-12-11 11:09:41','',0,'http://sadepisaroitaniitynkukkasilla.fi/?p=135',0,'post','',0),(136,1,'2021-04-15 07:32:13','2021-04-15 07:32:13','','fashion-4417118_960_720-1','','inherit','closed','closed','','fashion-4417118_960_720-1','','','2021-04-15 07:32:13','2021-04-15 07:32:13','',129,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/fashion-4417118_960_720-1.jpg',0,'attachment','image/jpeg',0),(137,1,'2021-04-15 07:32:17','2021-04-15 07:32:17','','portrait-4878714_960_720-1','','inherit','closed','closed','','portrait-4878714_960_720-1','','','2021-04-15 07:32:17','2021-04-15 07:32:17','',130,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/portrait-4878714_960_720-1.jpg',0,'attachment','image/jpeg',0),(138,1,'2021-04-15 07:32:19','2021-04-15 07:32:19','','clothing-1045960_960_720-1','','inherit','closed','closed','','clothing-1045960_960_720-1','','','2021-08-18 08:43:54','2021-08-18 08:43:54','',133,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/clothing-1045960_960_720-1.jpg',0,'attachment','image/jpeg',0),(139,1,'2021-04-15 07:32:21','2021-04-15 07:32:21','','model-4355146_960_720','','inherit','closed','closed','','model-4355146_960_720','','','2021-04-15 07:32:21','2021-04-15 07:32:21','',135,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/model-4355146_960_720.jpg',0,'attachment','image/jpeg',0),(140,1,'2021-04-15 07:32:40','2021-04-15 07:32:40','','fashion-4596664_960_720-2','','inherit','closed','closed','','fashion-4596664_960_720-2','','','2021-04-15 07:32:40','2021-04-15 07:32:40','',132,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/fashion-4596664_960_720-2.jpg',0,'attachment','image/jpeg',0),(141,1,'2021-04-15 07:32:45','2021-04-15 07:32:45','','download-5','','inherit','closed','closed','','download-5','','','2021-04-15 07:32:45','2021-04-15 07:32:45','',131,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/download-5.jpg',0,'attachment','image/jpeg',0),(142,1,'2021-04-15 07:32:48','2021-04-15 07:32:48','','fashion-2425755_960_720-1','','inherit','closed','closed','','fashion-2425755_960_720-1','','','2021-04-15 07:32:48','2021-04-15 07:32:48','',128,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/fashion-2425755_960_720-1.jpg',0,'attachment','image/jpeg',0),(143,1,'2021-04-15 07:33:58','2021-04-15 07:33:58','<!-- wp:paragraph -->\n<p><br>Maailma puhuu nyt muodista - toivottavasti verkossa tai offline - näemme vain muodit ympärillämme! Useimpien ihmisten elämäntavan muuttuessa muoti on saanut suuren merkityksen tällä vuosikymmenellä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kovaa työtä olla minä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Fyysinen maailmamme on täynnä muotidiivejä, jotka esittävät uusimpia muotitrendejään ja houkuttelevat meitä samaan, kun taas virtuaalimaailmamme ovat ottaneet askeleita kohti lukemattomia muotiblogeja. Lisäksi verkkokaupan myötä - syömme, hengitämme, surffaamme, puhumme ja villitys! Muoti on yhtä hyvä kuin puhtaat verisolumme, joita ei voida erottaa fyysisyydestämme. Me sosiaalisina ihmisinä olemme melkein tottuneet liiallisen muodin esiintymiseen fyysisessä maailmassamme, mutta sellainen ei riitä, nyt on tullut hyvin pysyvä osa myös virtuaalimaailmamme, koska kaikissa muotiblogeissa käydään liikaa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Verkkokaupan ostaminen on viimeisin puhe joidenkin muotifriikkien keskuudessa, jotka rakastavat hiljentää äskettäin hankittuja muotitrendejä. Ihmiset ostavat yhä useammin verkossa kaikkia muotituotteita, joihin heillä ei ole pääsyä. Verkkokaupan avulla ihmiset voivat kirjaimellisesti ostaa tuotteita, jotka kuuluvat eri maahan kuin he, yhdellä napsautuksella. Ihmiset voivat nyt laittaa kätensä uusimpiin Pariisin suunnittelijavaatteisiin ja uusimpiin muotiasusteisiin Yhdysvalloista yhdellä napsautuksella. Ja siksi näemme yhä useammat ihmiset kohottavan elämäntyyliään ja sopeutumaan vallitseviin muotivirtauksiin vastaamaan muita, jotka ovat olleet osa muodimaailmaa siitä lähtien.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Tutkijat kehittivät verikokeen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vielä tärkeämpää on kuitenkin, että verkko on todistanut virtuaalimaailmamme valloittaneiden muotiblogien määrän jyrkän kasvun. Tilastojen mukaan on olemassa noin 4 uutta muotiblogia, jotka aloitetaan päivittäin tavoitteena vuotaa kaikkia tämän muotimaailman ihmisiä ja auttaa ihmisiä pysymään ajan tasalla muotitrendeistä. Tällaisten muotiblogien bloggaajat tulevat yleensä muotiteollisuudesta tai ovat läheisessä yhteydessä kyseiseen teollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kriitikot väittävät, että liiallinen muoti saa ihmiset tietämään paremmin, mitä heillä on yllään ja miten he kantavat itseään. Aikaisemmin tämä kaikki oli rajoitettua tai pikemminkin vain eliittiä ja julkkiksia, joiden täytyi näyttää hohdokkaalta. Mutta nyt kuume on levinnyt kaikkiin ihmisryhmiin, ja kaikki tämä on tällaisten muotiblogien velkaa. Tavallaan ei olisi väärin sanoa, että tällainen blogi tarjoaa joillekin muotimehiläisille joitain muotiideoita ja oivalluksia ja kannustaa heitä olemaan osa trendiä, mutta ennen kaikkea se on se, mitä he näkevät ympärillään ja pyrkimyksissään. sisäinen olento, kuten yksi niistä, jotka haluavat tulostaa artikkeleita ilmaiseksi, on se, mikä todella motivoi heitä ottamaan harppauksen paljon puhuttuun sanaan - \"muoti\"! ...</p>\n<!-- /wp:paragraph -->','Muotiblogit toimivat motivaattoreina!','','inherit','closed','closed','','128-revision-v1','','','2021-04-15 07:33:58','2021-04-15 07:33:58','',128,'http://sadepisaroitaniitynkukkasilla.fi/?p=143',0,'revision','',0),(144,1,'2021-04-15 07:34:00','2021-04-15 07:34:00','<!-- wp:paragraph -->\n<p><br>Julkkikset ovat aina muotitrendien keskellä. Ei ole väliä, ovatko he luoneet ne vai seuranneet niitä, muotiasiantuntija Anne Niccoli pysyy julkkismuotien päällä ja tarjoaa muotivinkkejä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Keskustelu siitä, ajavatko julkkikset muotia vai ajaaako muoti julkkisvaatteita, hyvin samanlainen kuin vuosikymmenien ajan keskusteltu kana- ja munateoria. Itse asiassa ei ole väliä, onko tavoitteesi näyttää julkkisten arvoiselta. Internetistä on tullut tehokas väline välitöntä muotitutkimusta varten tuotemerkeistä ja tyyleistä, joita suosikki televisio- ja elokuvatähtemme käyttävät. Älykkäät muotiasiantuntijat voivat käyttää Internetiä vahvistamaan tunnistetut muotitrendit tai osoittamaan alkavan muodin alkua.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Minkälainen on se salaperäinen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Johtavana muotiasiantuntijana ja vähittäiskauppiaana suhtaudumme muotiin erittäin vakavasti, koska tavoitteemme on tarjota asiakkaille ratkaisuja, jotta he voivat pysyä trendissä, ei sen takana. Itse asiassa käytämme muotiblogiamme osoitteessa www.shopbeenvied.com välittömänä tapana kommunikoida muotitrendeistä, joita julkkikset näkevät paparatsokuvissa, olipa kyseessä sitten Melie Bianco -käsilaukut, uusi Sinful Tee tai A.B. korut. Niccoli. Shopbeenvied.com on huippuluokan muotijohtaja, joka tarjoaa koko Affliction-kokoelman. Tienraivaajina verkkokaupan maailmassa he ovat tehneet nimensä lyömällä trendejä ennen kuin ne räjähtivät. Olemme erikoistuneet tunnettujen huippusuunnittelijoiden uusimpiin muotivaatteisiin. Meillä on silmämme kaikesta julkkismuodista - haluamme aina nähdä, mitä julkkikset löytävät muotitrendeistä, joten sinun ei tarvitse.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Toinen tapa, jolla suhtaudun rooliin vähittäiskaupan muotiasiantuntijana, on sellaisten tuotteiden suunnittelu, joita muilla tuotemerkeillä ei ehkä ole tuotevalikoimassaan. Vaikka pysyn julkkisten muotitrendien kärjessä, myymälämme julkaisevat pian päivittäin uusia tuotteita Envy- ja Stash 129 -brändeillä, mikä on etu, jota harvoilla verkkokaupoilla on.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Nykyaikaisia ​​neuvoja näyttää ja tuntea itsensä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yksi näistä hyvistä tuotteista on tuote, joka on kehitetty auttamaan asiakkaitamme pysymään trendien kärjessä, olipa tavoitteesi bling rocktähti, boheemi, moottoripyörä tyylikäs vai hollywoodilainen glamour. Riippumatta muotitavoitteestasi, olemme osuneet härkäseinään alhaisimmilla hinnoilla, joiden avulla asiakkaat voivat ostaa muotivaatteita ja asusteita vain yhden tuotteen sijaan - me venytämme muotibudjettiasi! Olitpa kiinnostunut koettelemuksista, uusimmista syntisistä tuotteista, designkäsilaukkuista tai inspiroivista koruista, hintamme ovat parhaat, jotka löytyvät Internetistä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Kuten olen sanonut monta kertaa, tavoitteemme on ylittää odotuksesi ja me palvelemme vain asiantuntevinta muotihenkilöstöä. Julkaistavien artikkeleiden ja verkkosivustollamme kirjoitettujen blogien on tarkoitus jakaa uusimmat muotitiedot, jotta voit pysyä trendissä - ei vain myydä syntisiä, kärsimystä ja kateutta. Meillä on kuitenkin myös maksuttomia numeroita osoitteessa www.shopbeenvied.com vastaamaan kaikkiin muotikysymyksiin, joita et ehkä ole käsitellyt tämän viestinnän kautta. Tarjoamme esimerkiksi muotivihjeitä pitämään mustaa parhaana muotivalintana, kun olemme poissa talvesta ja olemme saattaneet saada muutaman kilon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Voimme myös ehdottaa värejä, kuten valkoisia ja keltaisia, välttämistä varten, jos yrität nähdä sensaatiomaista kesää, mutta et ole vielä siellä. Samoin kehosi muoto on tärkeä muuttuja, voimme auttaa korostamaan alueita, joihin haluat tehdä suurempia tai vähemmän alueita, jotka haluaisit näyttää pienemmiltä. Meillä on muotivinkkejä kaikille; ei ole väliä oletko plus- vai nollakoko. Kiitos, että käytit aikaa lukea artikkelini ja ota rohkeasti yhteyttä, jos sinulla on kysyttävää.</p>\n<!-- /wp:paragraph -->','Julkkismuodin asiantuntija','','inherit','closed','closed','','131-revision-v1','','','2021-04-15 07:34:00','2021-04-15 07:34:00','',131,'http://sadepisaroitaniitynkukkasilla.fi/?p=144',0,'revision','',0),(145,1,'2021-04-15 07:34:19','2021-04-15 07:34:19','<!-- wp:paragraph -->\n<p><br>Ihmiset ajavat aina muotia kohti. Tämän päivän muodit ovat vanhentuneita huomenna, ja uudet ovat muodissa huomenna.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Joten ihmiset, varsinkin lapset rakastavat poimia uusimmat muodit heti, kun he saapuvat.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Mutta kun tarkastelemme muotitrendejä, alalla on tiettyjä trendejä asettavia yrityksiä, joiden on katsottava tietävän muotiteollisuuden uusimmista trendeistä. Muoti ja sinä olet yksi askel nähdäksesi kaikki yritykset, jotka asettavat muodin ja tyylien trendit ja uusimmat mallit. Tämä on Intiassa perustettu yksityinen muotiklubi, jolla on monia online-asiakkaita ympäri maata.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muoti ja annat altistumisen erilaisille huippumerkkeille, uusimmille muotitrendeille ja ylellisyydelle, malleille ja tyyleille. Yleisöstä voi tulla tämän yrityksen jäsen, joten he saavat jopa 80 prosentin alennuksen muihin vähittäiskauppoihin verrattuna. Jäsenet hyötyvät myynnistä, mukaan lukien näkymä uusimmista trendeistä, pääsyn yksityiskohtiin ja laadukkaiden tuotteiden ostamisesta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Muoti ei ole vain avoin lapsille, vaan myös intohimo kaiken ikäisille.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tässä mielessä muoti ja sinä tarjoavat tavan ostaa uusimpia hajusteita, sandaaleja, kosmetiikkatuotteita, kodin tuotteita ja muita tuotteita, jotta se voi vastata kaikkien ikäryhmien ja kaikkien ihmisryhmien tarpeisiin. Kaikki nämä tuotteet ovat jäsenten saatavilla 3 päivän ajan, joten he voivat nähdä ja päättää, jatkavatko ne sopimuksen ostamista. Kenenkään on helppo selata sivustoa, koska sivusto on erittäin käyttäjäystävällinen. Kauppa synkronoidaan tekstiviestillä ja sähköpostilla, joka siirretään jäsenelle heti, kun tarjous on lähetetty sivustolle, mikä helpottaa jäsenten päätöstä kaupasta heidän tarpeidensa ja mieltymystensä mukaan. Tarjotut alennukset eivät heikennä laatua, mikä on tämän online-muotiklubin menestyksen todellinen salaisuus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotijäsenyys ja sinun on helppo saada. Ei tarvitse kenenkään suositusta liittyä klubiin tai mitään maksettavaa klubijäsenyyttä. Klubijäsenyys on täysin ilmainen ja rekisteröinti voidaan tehdä verkossa. Ostaminen tänään vilkkailla kaduilla ei ole niin helppoa. Alan viimeisimmistä muodista on hyvin vaikea tietää myymälöiden myyntiedustajien välityksellä, koska kaupat ovat liian täynnä, mikä on myös viikonloppujen aikana. Tämä olisi parempi valinta kaikille, jotka haluavat olla ajan tasalla muodista ja tehdä vähemmän ostoksia. Uusimmat trendit ja muodit tuodaan meille kodeistamme mukavasti tämän verkkotrendiyrityksen kautta. Lisäksi uutta myyntiä ilmestyy 3 päivän välein, mikä on ystävällinen näkökohta, koska jäsenet voivat odottaa uusia tarjouksia. Jäsenten on kuitenkin myös kiirehdittävä sopimusten tekemistä, jotta kaupat voidaan tarjota jonopohjalta, eikä sopimukseen sisälly suosituksia tai linjauksia.</p>\n<!-- /wp:paragraph -->','Muoti ja olet paratiisi huippumerkkeille','','inherit','closed','closed','','129-revision-v1','','','2021-04-15 07:34:19','2021-04-15 07:34:19','',129,'http://sadepisaroitaniitynkukkasilla.fi/?p=145',0,'revision','',0),(146,1,'2021-04-15 07:35:02','2021-04-15 07:35:02','<!-- wp:paragraph -->\n<p>Muoti voi olla päivittäinen tehtäväsi nuorelle tytölle. Mikä tahansa syy päästä kansainvälisen muodin maailmaan, viimeisimpien muotitrendien löytäminen ympäri maailmaa on välttämätöntä. Muotialan aloittelijat ovat aina uskoneet, että Yhdysvallat on useimpien maailman muotitrendien alkuperä, mutta ei. Italia tai Ranska voittaa Yhdysvaltoja uusimpien muotien suhteen. Saadaksesi lisätietoja viimeisimmistä trendeistä, voit saada paljon tietoa Fashion Week, Fashion Blogs ja Fashion -lehdistä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yhden kysymyksen pitäisi olla mielessäsi melko usein, koska kesä on täällä. Mitkä ovat viimeisimmät muotitrendit tänä kesänä? Kevyt, kirkas ja ihastuttava herkku mahdollisuuksiin ja ihastuttava lähestymistapa tänä kesänä, joka virallisesti saapuu kesäkuussa. Ihmiset voivat käyttää muotiideoitaan yhdessä uusimpien muotisuunnitelmien kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Uusimmat trendit muotielementit tänä kesänä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Androgeeninen: Klassiset räätälöidyt housut ja muodikkaat housut, joissa on \'helppo hennatakki\' ja rullatut hihat t-paidan päällä, sopivat erinomaisesti androgeeniseen ilmeeseen. Henkilölle, jolla on melko raskas keskiosa, tämä ilme sopii erinomaisesti naamioimaan kyseistä aluetta. Tämä ilme toimii täydellisesti missä tahansa ja tarjoaa paremman tuoton suosituimpiin tyyleihin sijoittamiseen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Läpinäkyvä: Haluatko tehdä melko naisellisen julistuksen tai viettelevän aistillisen? Läpinäkyvät tuotteet, joissa on läpikuultavia komponentteja, jotka syötetään lihan alaston sävyyn, olisi ihanteellinen valinta. Virkattuja ja leveitä pitsi-esineitä tai vaatteita, jotka on valmistettu kankaista, jotka voidaan muuntaa täysin tuoreiksi uusiksi ilmeiksi tulevana kesänä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Minimalismi: Hyvin yksinkertaisista luonnonmateriaaleista valmistetut, melko neutraalein värein valmistetut esineet ja mukavat linjat tarvitsevat tätä mahdollisuutta, kuten ne ovat olleet viime vuosina. Kaulukseton yläosa tai rakentamaton takki sekoitettuna paksuihin housuihin ja mukava suora t-paita voivat olla ihanteellinen asu nykyään. Kokeile tätä saadaksesi raikkaan, selkeän ilmeen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valkoinen: Vaatekaappisi ei olisi täydellinen ilman valkoisia elementtejä tänä vuonna. Aloita pään yläosasta jalkoihin, käytä valkoista tuoretta ulkoasua milloin tahansa tänä kesänä. Voit myös käyttää värikkäitä rohkeita ja fluoresoivia vaatteita sekä valkoisten kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stripes: Kuten vuoden 2011 Pariisin mallinäyttelyssä, Stripes tarvitsi tämän kauden. Niitä on tarjolla kaikkiin suuntiin, kaikki värityylit ja kaikki kaistanleveydet. Jos haluat suunnitella ulkoasusi heti, lisää vaatekaappiin raidallinen asu.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Denim- ja Baggy-housut: Jos haluat tehdä uuden, määritellyn muodin ilmoituksen, valitse Denim- tai Baggy-housut alakehollesi. Voit tehdä yhdistelmiä Chambray-t-paitojen, Coats Skinny -farkkujen, capri-leggingsien kanssa, ja luetteloa voidaan jatkaa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lisätarvikkeet: Pienillä muodilla voi olla suuri vaikutus koko ulkoasuun. Sekoitus rohkeita värejä, puutarhakukkia, raitoja ja suuntaus läpinäkyvyyteen sopii hyvin kevyiden, kirkkaiden ja muodikkaiden vaatteiden kanssa. Uuden ilmeen yhdistämiseksi käytä muutamia kenkiä lukuun ottamatta Lucite-ranneketta.</p>\n<!-- /wp:paragraph -->','Muotielementit tällä oikealla kesällä','','inherit','closed','closed','','130-revision-v1','','','2021-04-15 07:35:02','2021-04-15 07:35:02','',130,'http://sadepisaroitaniitynkukkasilla.fi/?p=146',0,'revision','',0),(147,1,'2021-04-15 07:35:04','2021-04-15 07:35:04','<!-- wp:paragraph -->\n<p><br>Nykypäivän nopeassa asteittaisessa muotitrendissä tietty tyyli on nopeasti saamassa suosiota Hollywoodin kuuluisuuksien keskuudessa, Boho-muoti. Tämä tyyli tunnetaan myös nimellä boheemi muoti, ja siihen vaikuttavat erilaiset hipi- ja boheemiyhdistelmät. Vaikka hän on matkustanut muotimaailmaan 90-luvun alkupuolelta lähtien, hän on toistuvasti esiintynyt erilaisissa hahmoissa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Boho-muoti</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nykypäivän nopeassa asteittaisessa muotitrendissä tietty tyyli on nopeasti saamassa suosiota Hollywoodin kuuluisuuksien keskuudessa, Boho-muoti. Tämä tyyli tunnetaan myös nimellä boheemi muoti, ja siihen vaikuttavat erilaiset hipi- ja boheemiyhdistelmät. Huolimatta siitä, että hän on matkustanut muotimaailmaan 90-luvun alkupuolelta lähtien, hän on toistuvasti esiintynyt uudelleen erilaisina hahmoina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Paitsi että tällainen asu on erittäin helppo valmistaa, Boho-muotiasiantuntijat ehdottavat, että boho-tyylin ilmaisemiseksi sinun ei tarvitse ostaa kalliita vaatteita. Vain oikea yhdistelmä yksinkertaisuutta, eleganssia ja itseluottamusta toimii. Valitse oikea yhdistelmä vaatteita, kenkiä, asusteita ja meikkiä varten, koska Bohemian Fashionista on nykyään tulossa enemmän mielentila kuin vain ulkonäkö tai \"muotitrendi, joka lopulta hiipuu ajassa\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Boho on kyse yksilöllisestä ja luonnollisesta näköisestä.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Kovaääniset sävyt ovat parhaita, sävyjä, kuten oranssi, vihreä ja purppura. Kukkaiset hameet ja paidat ovat upeita, mutta sinun ei tarvitse pukea vaatteita ollaksesi Boho. Kengät voivat vaihdella mieltymystesi mukaan. Sandaalit olisivat ilmeinen valinta, mutta jalkineilla varustetut saappaat ovat myös erittäin tyylikkäitä. Pidä hauskaa sen kanssa ja tee siitä hauska. Jos vaadit hiusten silittämistä hiuksillesi, anna sille hieman käyrä alareunassa sen sijaan, että menisit suoraan ylös emo- tai indie-tyyliin. Ajatuksena on saada se näyttämään luonnolliselta. Luonnolliset kiharat ovat hyviä tai jopa rautakiharat paranevat. Punokset ja afros ovat myös erittäin Boho. Boho on tärkein asia muistaa tarvikkeet. Tämä on ehkä kaikkein tärkein osa. Boho chic on synonyymi \"runsaille lisävarusteille\". Tämä tarkoittaa paljon rannekoruja, nilkkakoruja, sekoitettuja kaulakoruja ja roikkuvia korvakoruja. Se ei kuitenkaan lopu koruihin. Hiuksillesi löytyy pääpanta, pidikkeet ja tynnyri ja vyötärölle vyö. Mahdollisuudet ovat rajattomat. Varmista, että ne ovat todellinen osa vaatekaappiasi. Säteilyn tarkastelu on myös tekijä, älä laita tummaa huulipunaa värille, joka näyttää sinulle luonnolliselta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nykypäivän Boho-muodin seuraaminen on tapa ilmaista itseäsi ja olla yhteydessä maailmaan ja luontoon sekä koristella itseäsi rikkaimmilla kulttuurimaisilla. Tämän päivän globaali tietoisuus vahvistaa edelleen tämän tyyppistä muotia. Ole supermalli Kate Mossin kanssa ja ilmaise tuon boheemimainen tyyli sinussa.</p>\n<!-- /wp:paragraph -->','Tuo esiin Boho-muotitajusi','','inherit','closed','closed','','133-revision-v1','','','2021-04-15 07:35:04','2021-04-15 07:35:04','',133,'http://sadepisaroitaniitynkukkasilla.fi/?p=147',0,'revision','',0),(148,1,'2021-04-15 07:35:06','2021-04-15 07:35:06','<!-- wp:paragraph -->\n<p><br>Ainoa asia muodin suhteen on muutos. Muoti muuttuu jatkuvasti ja sen seurauksena myös muoti tarpeemme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><br>Etsimme aina eniten ostettavia muotituotteita.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tietysti muodilla on hinta. Tähän asti verkkokaupat tulevat kuvaan. Verkkokauppa on vienyt ostokset ja muodin täysin eri tasolle ja muuttanut tavallisten ihmisten ostotapaa. Tämä on antanut ihmisille kaikkialta maailmasta mahdollisuuden tutustua uusimpiin muotiteollisuuden tarjoamiin tuotteisiin erittäin kilpailukykyiseen hintaan. Kansainväliset suunnittelijat ja muotitalot ovat onnistuneet lisäämään asiakaskuntaaan ja jakeluverkostoaan verkkosivustojensa kautta, jotka mahdollistavat verkkokaupan ja toimituksen. Web-sivustot, kuten FashionandOlet antanut kotibrändeille alustan esitellä heidän töitään ja esitellä sitä asiakkaille kaikkialla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>FashionandYou on yksi menestyneimmistä verkkosivustoja käsittelevistä verkkosivustoista.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Heillä on laaja valikoima tuotteita, jotka sopivat kaikille yleisöille. He säilyttävät kodikoristeita, lasten leluja ja vaatteita, mukaan lukien koulutusleluja, miesten ja naisten kelloja ja käsilaukkuja, kenkiä, asusteita ja vaatteita. Niissä on aina viimeisimmät muodit, ja ne päivittävät ja täydentävät jatkuvasti varastojaan. Tällä verkkosivustolla on erittäin helppo navigoida ja se on hyvä joku, joka haluaa tehdä ostoksia verkossa, mutta ei ole tekninen taju. Ne tarjoavat sinulle kaikki tuotetiedot, jotta voit verrata erilaisia ​​ja valita parhaan. Heillä on useita erilaisia ​​tuotemerkkejä suoraan suurista kansainvälisistä nimistä, kuten Police, DKNY ja United Colors of Benetton, sekä vaikuttavan luettelon talomerkkeistä. Heillä on hienoja sovelluksia, kuten toivelistavaihtoehto, jossa voit syöttää tuotemerkkejä, jotka haluat nähdä heidän verkkosivuillaan. Tämä antaa heille mahdollisuuden saada säännöllistä palautetta asiakkailta, ymmärtää paremmin heidän tarpeensa ja palvella heitä tehokkaammin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ostosten lisäksi tällä sivustolla voi viettää aikaa monilla muilla tavoilla. Voit käydä läpi heidän aikakauslehtiään, joka kertoo sinulle kaikki uusimmista muodista, tai lukea heidän muotiblogejaan, joissa puhutaan aina uusista ja erilaisista tavoista, joilla voit päivittää vaatekaapisi. Heidän \'saada katse\' -vaihtoehto auttaa sinua jäljittelemään suosikki muodikasta julkkisasi ja auttaa sinua löytämään budjettisi parhaiten sopivan. Niiden pikamyyntivaihtoehto antaa sinulle mahdollisuuden käyttää kaikkia heidän myyntikohteitaan suoraan tarvitsematta käydä läpi kaikkia tuotteita. Tämä on hieno ihmisille, joilla on vähän varaa rahaa, mutta jotka haluavat silti käyttää paljon. Heillä on hyviä tarjouksia ja alennuksia, joskus jopa 80%. Tämä tekee heistä valitsemansa ostoskohteen ympäri vuoden.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>FashionandYou on luonut myrskyn kyberavaruudessa lyhyessä ajassa. Verkkokaupoissa on kulunut jonkin aikaa Intiassa monista syistä. Tänään voimme kuitenkin ostaa melkein mitä tahansa verkosta. Kuumaa ruokaa, kukkia, onnittelukortteja, vaatteita, huonekaluja ja jopa taloja voi ostaa verkosta. Fashionandyou on asettanut uuden vertailuarvon vaatteiden ja muodin vähittäiskauppaa käsitteleville verkkosivustoille ja antanut kilpailulle jotain huolestuttavaa.</p>\n<!-- /wp:paragraph -->','Fashionandyou - kaikki asiat','','inherit','closed','closed','','135-revision-v1','','','2021-04-15 07:35:06','2021-04-15 07:35:06','',135,'http://sadepisaroitaniitynkukkasilla.fi/?p=148',0,'revision','',0),(149,1,'2021-04-15 07:35:08','2021-04-15 07:35:08','<!-- wp:paragraph -->\n<p><br>Ihmiset ajavat aina muotia kohti. Tämän päivän muodit ovat vanhentuneita huomenna, ja uudet ovat muodissa huomenna.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Joten ihmiset, varsinkin lapset rakastavat poimia uusimmat muodit heti, kun he saapuvat. Mutta kun tarkastelemme muotitrendejä, alalla on tiettyjä trendejä asettavia yrityksiä, joiden on katsottava tietävän muotiteollisuuden uusimmista trendeistä. Muoti ja sinä olet yksi askel nähdäksesi kaikki yritykset, jotka asettavat muodin ja tyylien trendit ja uusimmat mallit. Tämä on Intiassa perustettu yksityinen muotiklubi, jolla on monia online-asiakkaita ympäri maata.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muoti ja annat altistumisen erilaisille huippumerkkeille, uusimmille muotitrendeille ja ylellisyydelle, malleille ja tyyleille. Yleisöstä voi tulla tämän yrityksen jäsen, joten he saavat jopa 80 prosentin alennuksen muihin vähittäiskauppoihin verrattuna. Jäsenet hyötyvät myynnistä, mukaan lukien näkymä uusimmista trendeistä, pääsyn yksityiskohtiin ja laadukkaiden tuotteiden ostamisesta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Muoti ei ole vain avoin lapsille, vaan myös intohimo kaiken ikäisille.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tässä mielessä muoti ja sinä tarjoavat tavan ostaa uusimpia hajusteita, sandaaleja, kosmetiikkatuotteita, kodin tuotteita ja muita tuotteita, jotta se voi vastata kaikkien ikäryhmien ja kaikkien ihmisryhmien tarpeisiin. Kaikki nämä tuotteet ovat jäsenten saatavilla 3 päivän ajan, joten he voivat nähdä ja päättää, jatkavatko ne sopimuksen ostamista. Kenenkään on helppo selata sivustoa, koska sivusto on erittäin käyttäjäystävällinen. Kauppa synkronoidaan tekstiviestillä ja sähköpostilla, joka siirretään jäsenelle heti, kun tarjous on lähetetty sivustolle, mikä helpottaa jäsenten päätöstä kaupasta heidän tarpeidensa ja mieltymystensä mukaan. Tarjotut alennukset eivät heikennä laatua, mikä on tämän online-muotiklubin menestyksen todellinen salaisuus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Muotijäsenyys ja sinun on helppo saada.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ei tarvitse kenenkään suositusta liittyä klubiin tai mitään maksettavaa klubijäsenyyttä. Klubijäsenyys on täysin ilmainen ja rekisteröinti voidaan tehdä verkossa. Ostaminen tänään vilkkailla kaduilla ei ole niin helppoa. Alan viimeisimmistä muodista on hyvin vaikea tietää myymälöiden myyntiedustajien välityksellä, koska kaupat ovat liian täynnä, mikä on myös viikonloppujen aikana. Tämä olisi parempi valinta kaikille, jotka haluavat olla ajan tasalla muodista ja tehdä vähemmän ostoksia. Uusimmat trendit ja muodit tuodaan meille kodeistamme mukavasti tämän verkkotrendiyrityksen kautta. Lisäksi uutta myyntiä ilmestyy 3 päivän välein, mikä on ystävällinen näkökohta, koska jäsenet voivat odottaa uusia tarjouksia. Jäsenten on kuitenkin myös kiirehdittävä sopimusten tekemistä, jotta tarjoukset voidaan toimittaa luontotuotejonon alla, eikä sopimukseen sisälly suosituksia tai linjauksia.</p>\n<!-- /wp:paragraph -->','Muoti ja sinä - vaihtelu on elämän mauste','','inherit','closed','closed','','132-revision-v1','','','2021-04-15 07:35:08','2021-04-15 07:35:08','',132,'http://sadepisaroitaniitynkukkasilla.fi/?p=149',0,'revision','',0),(150,1,'2021-04-15 07:35:11','2021-04-15 07:35:11','','fashion-show-1746590_960_720-1','','inherit','closed','closed','','fashion-show-1746590_960_720-1','','','2021-04-15 07:35:11','2021-04-15 07:35:11','',134,'http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/2021/04/fashion-show-1746590_960_720-1.jpg',0,'attachment','image/jpeg',0),(151,1,'2021-04-15 07:35:13','2021-04-15 07:35:13','<!-- wp:paragraph -->\n<p>Muotiteollisuus - Voitteko kertoa, mikä teollisuus oli pysäyttämätön myös pandemian aikana? Elintarvikkeita, päivittäistavaroita, terveyttä ja joitain tärkeitä valmistussektoreita lukuun ottamatta, muotimaailma on silloin tällöin yksi trendialoista. Ennen kuin pääset tähän, on oltava tietoinen siitä, miten päästä muotiteollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kuinka päästä muotiteollisuuteen - Termi itsessään on trendi nykymaailmassa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se on eräänlainen foorumi, joka muuttuu silloin tällöin väestön vaatimusten mukaan. Tämä on yksi vilkkaimmista sektoreista. Voisi sanoa, kuten joillakin muilla aloilla, tällä kentällä on oma viehätyksensä, joka myös lisää palveluntarjoajan tai siihen liittyvien ammattilaisten arvoa tai kysyntää. Jos luet tätä, etsit todennäköisesti ratkaisua - Kuinka päästä muotiteollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ennen kuin aloitat teollisuudelle, kysy itseltäsi, oletko koskaan kiinnostunut siitä, mitä olet käyttänyt, että suunnittelet vaatteita, kenkiä ja asusteita? Oletko henkilö, joka auttaa muita valitsemaan vaatteensa sopivilla lisävarusteilla täydellisen yhdistelmän valitsemiseksi? Luuletko, että luova ajattelusi, vahva viestintäsi tai taitosi voivat auttaa sinua löytämään menestystä? Jos kyllä, niin se kuulostaa melko siistiltä, ​​koska luovuus ja ainutlaatuiset strategiat ovat tärkeimpiä tässä nopeasti muuttuvassa trendissä. Ainoa mitä tarvitset, on teroittaa se asiantuntijan ohjauksella.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kuinka tulla muotisuunnittelijaksi?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Intian huippumuotisuunnittelutoimistona teemme kyselyn ja mittaamme mahdollisuuden tai mahdollisuuden sinulle. Muotiteollisuuteen pääseminen ei ole vain luovia ajatuksia tai ideoita. On vain monia käytännön tietoja, jotka voi antaa sinulle. Käytännön kokemuksen saaminen on paras tapa liittyä muotisuunnittelukurssille. Katsotaanpa muotisuunnittelijan perustarpeita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ryhdy sertifioiduksi henkilöksi - Jotta saat jalkasi tälle kilpailulle, saatat tarvita taitosi sertifikaatin. Tänä aikana saat paitsi todistuksen myös mahdollisuuden tutustua muodin historiaan, materiaaleihin, kuvapiirustukseen, kuvionvalmistukseen, teollisuuden käyttämään edistyneeseen tekniikkaan ja paljon muuta, jonka käsittelemme edelleen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valitse muotityyppi - Asiantuntijamme selittävät sinulle, mitä muoti todella on? Kyse ei ole vain vaatteista, alusta asti, vaatteet asusteisiin ovat kaikki muodissa. Joten sinun on tunnistettava erikoistumisesi tiettyyn aiheeseen tai muotiin. Sitten on aika päättää, mikä suunnittelualue on sinun eduksesi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Käytännön kokemus - Et ole epäilemättä kuullut, että harjoittelu tekee miehestä täydellisen. Ilman käytännön tietoa kukaan ei voi todistaa taitojaan vain teorian avulla. Ymmärrämme vapaan käden arvon tietyllä kurssilla, joten tarjoa paras käytännön koulutus opiskelijoille, jotka harjoittavat muotisuunnittelukurssia muotisuunnittelukoulutuslaitoksessamme. Laadusta, viestintätaidoista, liiketoiminnasta vaatteiden suunnitteluun saat todellisen kokemuksen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tutki muotiliiketoimintaa - Muotisuunnittelija ei tarkoita, että olet työntekijä muotiyrityksen alla. Saatat olla yrityksen omistaja, ja jotta voisit tulla muotiyrityksesi ammattitaitoiseksi omistajaksi, sinulla on oltava tiedot sen perustamiseksi ja sen sisältämät menettelyt. Tulevaisuutesi alusta alkaen annamme sinulle nopean yleiskatsauksen siitä, miten menestyä, ja näin se tuli muotiteollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>MUOTITEOLLISUUDEN MARKKINAT:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On totta, että muotiteollisuuden kasvu on hidastunut viime vuoteen verrattuna COVID: n ansiosta19. Mutta se olettaa myös, että se kasvaa lähitulevaisuudessa hyvällä numerolla, sanoi maanmittaaja. Tämä tutkimus ei ainoastaan ​​tarjoa ohjeita muotimarkkinoille, vaan auttaa myös muokkaamaan ja muuntamaan taloutta. Kuitenkin, jos aiot tarkastella raportteja, muotisegmentin ennustetaan saavuttavan 664 474 miljoonaa dollaria vuoteen 2020 mennessä ja paljon enemmän tulevina vuosina, näin se tulee muotiteollisuuteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Syyt uran valitsemiseen muodin teollisuudessa:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Jos olet ei-tekninen henkilö tässä teknologiamaailmassa, se on hieno. Monet luovat alat odottavat sinua, ja muotiteollisuus on yksi parhaista alustoista. Se on myös täydellinen portti ammatillisen elämän johtamiseen. Tämä on paras alue vähentää luovuutta. Tällä alalla saat mahdollisuuden saada vahva verkosto ja tavata alustasi asiantuntijoita. Voit elää elämääsi omalla mukavuudellasi.</p>\n<!-- /wp:paragraph -->','MITEN TULEVA MUOTITEOLLISUUTEEN','','inherit','closed','closed','','134-revision-v1','','','2021-04-15 07:35:13','2021-04-15 07:35:13','',134,'http://sadepisaroitaniitynkukkasilla.fi/?p=151',0,'revision','',0),(153,1,'2021-05-06 07:53:24','2021-05-06 07:53:24','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						Blog\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-05-06 07:53:24','2021-05-06 07:53:24','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=153',0,'revision','',0),(154,1,'2021-05-06 07:53:24','2021-05-06 07:53:24','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ornare rhoncus eleifend. Integer ornare, libero et faucibus pellentesque, metus tellus condimentum felis, sed feugiat felis lorem ut dui.</p><p> </p>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						Blog\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-05-06 07:53:24','2021-05-06 07:53:24','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=154',0,'revision','',0),(155,1,'2021-05-06 07:53:25','2021-05-06 07:53:25','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						Blog\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-05-06 07:53:25','2021-05-06 07:53:25','',5,'http://sadepisaroitaniitynkukkasilla.fi/?p=155',0,'revision','',0),(157,1,'2021-06-21 05:54:43','2021-06-21 05:54:43','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						Blog\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener noreferrer\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener noreferrer\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-06-21 05:54:43','2021-06-21 05:54:43','',5,'http://sadepisaroitaniitynkukkasilla.fi/5-revision-v1/',0,'revision','',0),(158,1,'2021-06-21 05:54:43','2021-06-21 05:54:43','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />											\n			<h4>Fashion Style</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n										<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />											\n			<h4>Travel Tips</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						Blog\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener noreferrer\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener noreferrer\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-06-21 05:54:43','2021-06-21 05:54:43','',5,'http://sadepisaroitaniitynkukkasilla.fi/5-revision-v1/',0,'revision','',0),(159,1,'2021-06-21 05:54:44','2021-06-21 05:54:44','<h1>naisten-</h1>		\n			<h1>\nmuoti</h1>		\n			<h4>\nMUOTI | MATKA |</h4>		\n			<h4>\nELINTAPA</h4>		\n			<a href=\"#start\">\n						</a>\n			<h2>\nIHONHOITO</h2>		\n			<h4>IHONHOITO &</h4>		\n			<h4>\nkauneusvinkkejä</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						 siirry blogiin\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ihonhoitotuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 partavaahto\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hiustuotteet\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Hajuvedet ja tuoksut\n					</a>\n			<a href=\"#\" role=\"button\">\n						 henkilökohtainen hygieniapakkaus\n					</a>\n			<a href=\"#\" role=\"button\">\n						kuntosali- ja matkavinkkejä\n					</a>\n			<a href=\"#\" role=\"button\">\n						 ruokavalio ja detox\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muotityylivinkkejä\n					</a>\n			<h2>\nUUSIMMAT POSTIT</h2>		\n			<h4>\ntehdä aikaa &</h4>		\n			<h4>\nPIDÄ HAUSKAA!</h4>		\n															<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/girls-1828539_1920-p5qkonq9ekesbgwo4i38bjradodym467f8ddlvgguc.jpg\" title=\"girls-1828539_1920\" alt=\"girls-1828539_1920\" />															\n			<h4>Fashion Style</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n															<img src=\"http://sadepisaroitaniitynkukkasilla.fi/wp-content/uploads/elementor/thumbs/womens-1594288_1920-p5qkxjbdy8k9yw0gac8dvb40comrb7exz66gryam2s.jpg\" title=\"womens-1594288_1920\" alt=\"womens-1594288_1920\" />															\n			<h4>Travel Tips</h4>		\n			<a href=\"#\" role=\"button\">\n						 LUE LISÄÄ\n					</a>\n			<h2>\nelämäntapa</h2>		\n			<h4>\nPIDÄ HYVÄÄ HUOLTA</h4>		\n			<h4>\nITSESTÄSI</h4>		\n			<a href=\"/blog/\" role=\"button\">\n						Blog\n					</a>\n			<a href=\"#\" role=\"button\">\n						 matkustaa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 elämäntapa\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Onnellisuus\n					</a>\n			<a href=\"#\" role=\"button\">\n						 Muoti\n					</a>\n			<h2>\n20% alennus</h2>		\n			<a href=\"#\" role=\"button\">\n						 Mainos\n					</a>\n			<h2>\nuusille ja olemassa oleville asiakkaille</h2>		\n			<a href=\"#\" role=\"button\">\n						 tilaa\n					</a>\n			<h3>\nmatkustaa</h3>		\n			<h2>\n\"Loppujen lopuksi valitamme vain mahdollisuuksia, joita emme käyttäneet\"</h2>		\n			<h2>Karl Lagerfeld</h2>		\n			<h2>\"Pikku musta mekko ei ole koskaan liian pukeutunut tai alipukeutunut.\" </h2>		\n			<h2>\nMinusta</h2>		\n			<h4>Jenni  </h4>		\n			<h4>Nuorela</h4>		\n		<p>Hei kaikki,</p><p>Kiitos, että käytit aikaa vierailla verkkosivustollani! Olen Jenni bloggaaja, joka rakastaa pohjimmiltaan matkustamista, harrastaa muotia ja uusimpia trendejä. Teen myös sitä, mikä tekee minut onnelliseksi, kuten ruoanlaitto ja leivonta miehelleni. Lyhyesti sanottuna tämä sivusto on voittoa tavoittelematon sivusto, joka juhlii naisuutta ja erilaisia ​​asioita, jotka tekevät naisesta onnellisen.</p>Asun LUVIA Suomessa, minulla oli tytär, jota rakastan niin paljon. Koska olen äiti, ajattelin, että synnytyksen jälkeen menettäisin kaltaisen muodin ja keskittyisin vain olemaan kotiäiti ja lapset ... Mutta opin, että oleminen ja hyvännäköinen ilo tekee minusta. Se sai minut vähän onnea ja itseluottamusta. Joten kaikille naisille! Kippis, ole onnellinen ja juhlkaamme kaikki naisuutta.<h2 style=\"text-align: center;\">Kasino- ja muoti-guesthouset - erinomaiset häät</h2><p><br />Ei ole epäilystäkään siitä, että jos suunnittelet häät tai muuta erityistä tilaisuutta, sinun kannattaa harkita yöpymistä häämajassa. Näiden vierastalojen tarjoamat palvelut ovat yksinkertaisesti erinomaisia ​​ja tilat, jotka takaavat <a href=\"https://kaikkipokerista.com/pokerisivustot/betsafe/\">kaikkipokerista.com</a>, että vierailusi on mukavaa ja vaivatonta. Tällainen guesthouse voi järjestää kaiken lentokenttäkuljetuksista langattomaan internetyhteyteen pelilaitteisiin. On jopa monia, jotka tarjoavat täyden huonepalvelun ja pysäköintipalvelun, samalla kun he veloittavat kohtuulliset hinnat palveluistaan. Monissa näistä lomakohteista on ravintoloita, joten tarjolla on runsaasti ruokapaikkoja.</p><p>Yksi parhaista ominaisuuksista, jotka on tarkistettava ylellisessä all-suite-lomakeskuksessa, on kaapelitelevision saatavuus. Kaapelitelevisio pitää sinut viihdyttävänä ja tarjoaa sinulle kaiken viihteen, jota mahdollisesti tarvitset poissa kotoa ollessasi. Lisäksi monissa näistä lomakohteista on paikan päällä oleva kasino, joka tarjoaa sinulle täydellisen kokemuksen kolikkopelien, crapsien tai blackjackin pelaamisesta.</p><p>Jos etsit paikkaa, jossa voit ruokailla, sinun kannattaa ruokailla kasinolla ja muoti-guesthousessa, koska nämä paikat tarjoavat hienoimpia ruokailumahdollisuuksia kaikkialla. On satoja ravintoloita, joista valita, sekä laaja valikoima ruokia näytteeksi. Näissä lomakohteissa saamasi ruoan laatu on yksinkertaisesti upeaa. Parempaa ruokailukokemusta on todellakin vaikea löytää mistään muualta.</p>		\n			<h2>Alexander McQueen</h2>		\n			<h4> \n\"Luulen, että kaikessa on kauneutta. Mitä\" normaalit \"ihmiset pitävät rumaina,  voin yleensä nähdä siinä jotain kauneutta.\" </h4>		\n					<a target=\"_blank\" rel=\"noopener noreferrer\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener noreferrer\">\n						Twitter\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n						Yelp\n											</a>\n					<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n						Whatsapp\n											</a>\n			<a href=\"#start\">\n						</a>','Home','','inherit','closed','closed','','5-revision-v1','','','2021-06-21 05:54:44','2021-06-21 05:54:44','',5,'http://sadepisaroitaniitynkukkasilla.fi/5-revision-v1/',0,'revision','',0),(165,1,'2021-08-18 08:24:26','2021-08-18 08:24:26','<!-- wp:paragraph -->\n<p>Muodin maailmassa jokainen uusi tuote tai tyyli alkaa ideasta. Muotisuunnittelun määrittelevät uusien jalkineiden, vaatteiden ja asusteiden luojat. Muotisuunnitteluun kuuluu joukko taitoja, jotka vaihtelevat markkinatutkimuksesta ja luovuudesta luonnokseen ja kankaan valintaan. <a href=\"/the-real-joy-of-cooking\">Muotisuunnittelijat </a>ohjaavat prosessia alusta alkaen tuotantoon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Trendien kärjessä pysyminen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Menestyäkseen muotisuunnittelijoiden on luotava trendejä tai ainakin seurattava nopeasti, kun uusia suuntauksia ilmenee, urasivuston Student Scholarships mukaan. Menestynyt suunnittelija tutkii markkinoita yleisön makuun ja ennustaa seuraavan suuren suosion nousun.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelu edellyttää, että ammattilaiset ovat jatkuvasti linjassa markkinoiden kanssa, mikä on trendissä tällä hetkellä ja mitkä taloudelliset indikaattorit voivat vaikuttaa ostopäätöksiin tulevaisuudessa. Markkinatutkimus sisältää kilpailijoiden seuraamisen sekä kuluttajien vaatimukset. Vahva bisnestaju on tärkeä osa menestyksekästä uraa muotisuunnittelussa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Eri työalueet</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vaikka muotisuunnittelijat haaveilevat omien etikettiensä luomisesta - julkkisten käyttämien ja miesten ja naisten haluamien maailmanlaajuisten mallien luomisesta - <a href=\"/matkakokemuksia\">useimmat </a>suunnittelijat päätyvät työskentelemään tavaroiden tukkumyyjien palveluksessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yhdysvaltain työtilastotoimisto raportoi, että 29 prosenttia muotisuunnittelijoista työskentelee vaatteiden, tavaratavaroiden tai käsitysten tukkukauppiaiden ja 7 prosenttia valmistajien palveluksessa. Noin 22 prosenttia ammattimaisista muotisuunnittelijoista on itsenäisiä ammatinharjoittajia ja työskentelee sopimusten ja/tai freelance-toimeksiantojen parissa. Harvat pääsevät huipulle kilpailemaan Ralph Laurenin ja Calvin Kleinin kaltaisten kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kenttään siirtyminen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelun aloittaminen on yleensä helpompaa, kun suunnittelijat tuovat valtakirjoja, kuten kahden tai neljän vuoden tutkinnon tietokoneavusteisessa suunnittelussa tai kauppatoiminnassa. Muotisuunnittelijat toimivat usein harjoittelijoina vakiintuneille suunnittelijoille. On erittäin tärkeää luoda ja päivittää työportfoliosi urasi aikana. Siksi harjoittelut voivat olla niin tärkeitä muotisuunnittelijan pätevyyden rakentamisessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Suunnittelijat luovat tyypillisesti prototyyppejä vaatteistaan ​​tai asusteistaan ​​näytettäväksi mahdollisille työnantajille ja asiakkaille sekä luonnoksia onnistuneesti myydyistä töistä. Kilpailuihin ja muotinäytöksiin osallistuminen näyttää myös hyvältä suunnittelun ansioluettelossa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Vaatemateriaalien hankinta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lopputuotteiden valmistukseen käytetty kangas ja tarvikkeet ovat se osa työtä, josta useimmat suunnittelijat nauttivat eniten. Olipa he ompelevat lopputuotteen tai valvovat vain sen tuotantoa, käytännön osallistuminen sen luomiseen määrittelee lopulta muotisuunnittelun tutkinnon motiivin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kun prototyyppi on luotu, muotisuunnittelijoista tulee sitten myyjiä löytääkseen ostajia tai ansaitakseen paikan kansallisella näyttämöllä esittelemään luomuksiaan. Koko prosessi ideasta myyntiin pyörii juuri oikean ajoituksen ja menestyvien suunnittelijoiden täydellisten luovien valintojen ympärillä. Tämä tarkoittaa, että mallien mainostaminen mahdollisille myyjille, ei vain kuluttajille, on osa muotisuunnittelijan työnkuvausta.</p>\n<!-- /wp:paragraph -->','Muotisuunnittelu','','publish','closed','closed','','gf','','','2021-08-18 10:22:55','2021-08-18 10:22:55','',0,'https://sadepisaroitaniitynkukkasilla.fi/?page_id=165',0,'page','',0),(166,1,'2021-08-18 08:24:26','2021-08-18 08:24:26','','gf','','inherit','closed','closed','','165-revision-v1','','','2021-08-18 08:24:26','2021-08-18 08:24:26','',165,'https://sadepisaroitaniitynkukkasilla.fi/?p=166',0,'revision','',0),(168,1,'2021-08-18 08:33:07','2021-08-18 08:33:07','<!-- wp:paragraph -->\n<p>Muodin maailmassa jokainen uusi tuote tai tyyli alkaa ideasta. Muotisuunnittelun määrittelevät uusien jalkineiden, vaatteiden ja asusteiden luojat. Muotisuunnitteluun kuuluu joukko taitoja, jotka vaihtelevat markkinatutkimuksesta ja luovuudesta luonnokseen ja kankaan valintaan. Muotisuunnittelijat ohjaavat prosessia alusta alkaen tuotantoon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Trendien kärjessä pysyminen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Menestyäkseen muotisuunnittelijoiden on luotava trendejä tai ainakin seurattava nopeasti, kun uusia suuntauksia ilmenee, urasivuston Student Scholarships mukaan. Menestynyt suunnittelija tutkii markkinoita yleisön makuun ja ennustaa seuraavan suuren suosion nousun.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelu edellyttää, että ammattilaiset ovat jatkuvasti linjassa markkinoiden kanssa, mikä on trendissä tällä hetkellä ja mitkä taloudelliset indikaattorit voivat vaikuttaa ostopäätöksiin tulevaisuudessa. Markkinatutkimus sisältää kilpailijoiden seuraamisen sekä kuluttajien vaatimukset. Vahva bisnestaju on tärkeä osa menestyksekästä uraa muotisuunnittelussa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Eri työalueet</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vaikka muotisuunnittelijat haaveilevat omien etikettiensä luomisesta - julkkisten käyttämien ja miesten ja naisten haluamien maailmanlaajuisten mallien luomisesta - useimmat suunnittelijat päätyvät työskentelemään tavaroiden tukkumyyjien palveluksessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yhdysvaltain työtilastotoimisto raportoi, että 29 prosenttia muotisuunnittelijoista työskentelee vaatteiden, tavaratavaroiden tai käsitysten tukkukauppiaiden ja 7 prosenttia valmistajien palveluksessa. Noin 22 prosenttia ammattimaisista muotisuunnittelijoista on itsenäisiä ammatinharjoittajia ja työskentelee sopimusten ja/tai freelance-toimeksiantojen parissa. Harvat pääsevät huipulle kilpailemaan Ralph Laurenin ja Calvin Kleinin kaltaisten kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kenttään siirtyminen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelun aloittaminen on yleensä helpompaa, kun suunnittelijat tuovat valtakirjoja, kuten kahden tai neljän vuoden tutkinnon tietokoneavusteisessa suunnittelussa tai kauppatoiminnassa. Muotisuunnittelijat toimivat usein harjoittelijoina vakiintuneille suunnittelijoille. On erittäin tärkeää luoda ja päivittää työportfoliosi urasi aikana. Siksi harjoittelut voivat olla niin tärkeitä muotisuunnittelijan pätevyyden rakentamisessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Suunnittelijat luovat tyypillisesti prototyyppejä vaatteistaan ​​tai asusteistaan ​​näytettäväksi mahdollisille työnantajille ja asiakkaille sekä luonnoksia onnistuneesti myydyistä töistä. Kilpailuihin ja muotinäytöksiin osallistuminen näyttää myös hyvältä suunnittelun ansioluettelossa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Vaatemateriaalien hankinta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lopputuotteiden valmistukseen käytetty kangas ja tarvikkeet ovat se osa työtä, josta useimmat suunnittelijat nauttivat eniten. Olipa he ompelevat lopputuotteen tai valvovat vain sen tuotantoa, käytännön osallistuminen sen luomiseen määrittelee lopulta muotisuunnittelun tutkinnon motiivin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kun prototyyppi on luotu, muotisuunnittelijoista tulee sitten myyjiä löytääkseen ostajia tai ansaitakseen paikan kansallisella näyttämöllä esittelemään luomuksiaan. Koko prosessi ideasta myyntiin pyörii juuri oikean ajoituksen ja menestyvien suunnittelijoiden täydellisten luovien valintojen ympärillä. Tämä tarkoittaa, että mallien mainostaminen mahdollisille myyjille, ei vain kuluttajille, on osa muotisuunnittelijan työnkuvausta.</p>\n<!-- /wp:paragraph -->','Muotisuunnittelu','','inherit','closed','closed','','165-revision-v1','','','2021-08-18 08:33:07','2021-08-18 08:33:07','',165,'https://sadepisaroitaniitynkukkasilla.fi/?p=168',0,'revision','',0),(169,1,'2021-08-18 08:50:45','2021-08-18 08:50:45','<!-- wp:paragraph -->\n<p>Matkailukokemuksilla on yksi tärkeimmistä rooleista, miksi niin monet meistä jatkavat maailman tutkimista. Vaikka tämä teknologian aikakausi sallii meidän dokumentoida lähes joka <a href=\"/gf\">päivämme</a>, mikään ei ole verrattavissa siihen, että kokee jotain omakohtaisesti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>AVOIN MIELI</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vierailu jonnekin, johon et vielä tunne, tarkoittaa, että sinulla on avoin mieli. Mutta altistuminen odottamattomille matkoilla antaa sinulle mahdollisuuden laajentaa mielesi niin paljon pidemmälle. Tämä koskee kulttuuria, uskontoa, ruokaa ja ihmisiä. Avoin mieli ja halukkuus sukeltaa pää ensin kokemukseen tekevät matkakokemuksista poikkeuksellisia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>RAJOITA RAJOITASI</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yksi parhaista asioista, joita voit tehdä matkoilla, on poistua mukavuusalueeltasi. Itsesi työntäminen henkisesti, fyysisesti ja emotionaalisesti tuottaa usein upeimpia palkintoja. Scott Mountain Holidays venyttää rajojasi sekä räätälöityjen että jäsenneltyjen ryhmämatkojen kautta. <a href=\"/the-real-joy-of-cooking\">Mutta </a>ei hätää. Rajasi voivat olla venytettyjä, mutta kun Andy on oppaasi, sinusta pidetään hyvää huolta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>EMBRACE JA YHTEYS</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Erityisen matkakokemuksen luominen tarkoittaa, että sinun on oltava valmis ottamaan vastaan ​​vuorovaikutusta paikallisten, luonnon ja kulttuurin kanssa. Tämä antaa sinulle monipuolisen kokemuksen paikasta ja mahdollisuuden olla vuorovaikutuksessa samanhenkisten ihmisten kanssa ympäri maailmaa. Kiertueen suorittaminen Scot Mountain Holidaysin avulla antaa sinulle myös harvinaisen tilaisuuden todella omaksua Skotlanti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>OLE HETKISSÄ</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Valokuvat ja videot ovat loistava tapa kaapata matkan parhaat hetket. Matkustaminen on kuitenkin myös loistava tilaisuus ottaa askel pois tekniikasta. Matkoilla voit olla läsnä hetkessä sen sijaan, että kokisit sen puhelimen linssin kautta. Joten tee matkakokemuksestasi erityisen erityinen ja käytä tilaisuutta arvostamaan todella sitä paikkaa, jossa olet ja mitä olet alttiina. Scot Mountain Holidays -vaellus- ja kävelyretket antavat sinulle mahdollisuuden tehdä tämän, ja sinulla on runsaasti mahdollisuuksia piilottaa kamerasi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Scot Mountain Holidays on kyse kokemuksista. Osallistu kävely-, vaellus- tai maastopyöräilylomille upeassa Skotlannissa, ja lähdet kotiin matkalla muistojen ja kokemusten kanssa, jotka pysyvät kanssasi ikuisesti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Oletko samaa mieltä? Haluaisitko lisätä jotain omiin matkakokemuksiisi? Meille parhaat muistot ovat aina saaneet aikaan kokemuksia, joita meillä on ollut paikallisten ihmisten kanssa, ja epätavallisia aktiivisia kokemuksia. Mikä on antanut sinulle ikimuistoisimman matkakokemuksen?</p>\n<!-- /wp:paragraph -->','Matkakokemuksia','','publish','closed','closed','','matkakokemuksia','','','2021-08-18 10:22:12','2021-08-18 10:22:12','',0,'https://sadepisaroitaniitynkukkasilla.fi/?page_id=169',0,'page','',0),(170,1,'2021-08-18 08:37:58','2021-08-18 08:37:58','<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto, joka on omistettu vaatteiden ja muiden elämäntapa -asusteiden luomiseen. Moderni muotisuunnittelu on jaettu kahteen perusluokkaan: haute couture ja ready-to-wear. Haute couture -mallisto on omistettu tietyille asiakkaille, ja se on räätälöity juuri näille asiakkaille. Voidakseen haute couture housea suunnittelijan on kuuluttava Haute Couturen syndikaattikamariin ja <a href=\"/matkailu\">näytettävä </a>uusi kokoelma kahdesti vuodessa, jossa esitetään vähintään 35 erilaista asua joka kerta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valmisvaatemallistot ovat vakiokokoisia, eivät mittatilaustyönä, joten ne sopivat paremmin suuriin tuotantosarjoihin. Ne on myös jaettu kahteen luokkaan: suunnittelija/luomista ja makeisia. Suunnittelijakokoelmilla on korkeampi laatu ja viimeistely sekä ainutlaatuinen muotoilu. Ne edustavat usein tiettyä filosofiaa, ja ne on luotu lausunnon antamiseen eikä myyntiin. Sekä ready-to-wear- että haute-couture -mallistot esitetään kansainvälisillä catwalkeilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kuka sen keksi?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ensimmäinen muotisuunnittelija, joka oli enemmän kuin yksinkertainen ompelija, oli Charles Frederick Worth 1800 -luvulla. Ennen kuin hän perusti muotisuunnittelutalonsa Pariisiin, vaatteet valmistivat nimettömät pukijat ja muotistandardit johdettiin rojaltien käyttämistä tyyleistä. Worth oli ensimmäinen suunnittelija, joka todella saneli asiakkailleen, mitä pukeutua, eikä seurannut heidän vaatimuksiaan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hänen muotitalostaan ​​tuli niin kuuluisa, että ihmiset pystyivät liittämään kuviin kasvot ja nimen, kun he tiesivät olevansa Worthin talosta. Tästä alkoi perinne, jonka mukaan talon suunnittelija ei ainoastaan ​​luonut vaatteita, vaan myös edustaa brändin symbolia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Mitä muotisuunnittelijaksi tarvitaan?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto. Jotta voit työskennellä suunnittelijana, sinulla on oltava taiteellinen ja luova persoonallisuus. Sinun on myös oltava hyvä piirtämään ja kyettävä ilmaisemaan ideasi luonnoksissa. Sinun ei välttämättä tarvitse olla suuri taiteilija, mutta sinulla on oltava erityisiä taitoja värien, sävyjen ja sävyjen yhdistämisessä. Sinun on myös voitava työskennellä kankaan kanssa ja käyttää tekstiilejä luovasti ja omaperäisesti. Muotisuunnittelijoilla on hyvä visuaalinen mielikuvitus ja he pystyvät ajattelemaan kolmiulotteisesti ja toteuttamaan ideansa vaatteisiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoiden on oltava tietoisia muotimarkkinoiden vaatimuksista. Heidän on oltava erittäin kiinnostuneita oppimaan uusia asioita ja lukemaan muotisuunnittelun historiaa ja uusia suuntauksia käsitteleviä aikakauslehtiä, lehtiä ja kirjoja. Heidän on myös oltava kiinnostuneita taiteesta, vierailla taidegallerioissa ja olla vuorovaikutuksessa kaikenlaisten taiteilijoiden kanssa aina, kun heillä on tilaisuus. Suunnittelijalla tulee myös olla jonkin verran tietoa ja kokemusta räätälöinnistä (leikkaus, verhoilu, ompelu jne.) Ja pystyä erottamaan eri kankaan laatutasot.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Myös muotisuunnittelussa tarvitaan hyvää ymmärrystä yleisön elämäntavoista ja asiakkaiden tarpeista ja vaatimuksista. Suunnittelijoilla tulee olla hyvät viestintätaidot ja heidän on voitava ilmaista ajatuksensa selkeästi. Mutta mikä tärkeintä, niiden on oltava hyvin omaperäisiä ja niissä on oltava tuoreita, <a href=\"/mita-muotisuunnittelija-tekee\">innovatiivisia </a>ideoita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Hotelleja Las Vegasissa - Nähtävyyksiä ja kasino- ja muotihotelleja lähelläsi</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Casino ja Fashion ovat trendikäs baari/yökerho, joka sijaitsee Via Bellagion lähellä Las Vegasissa. Tämä paikka on trendikäs ja tapahtuu, ja se on myös täynnä upeita kauppoja ja ravintoloita, joten voit viettää koko iltapäivän vaeltaaksesi tämän suuren kaupungin läpi. Jos etsit vaihtoehtoa <a href=\"https://www.suomalaiset-kasinot.net/kasinot-ilman-rekisteroitymista/\">suomalaiset-kasinot</a> loistolle ja glamourille, sinun kannattaa ehdottomasti tutustua kasinoon ja muotiin. Täällä on paljon muuta tekemistä kuin peliautomaattien pelaaminen. Tämä baari ja klubi ovat todella kaikille.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sijaitsee lähellä Bellagio -kasinoa, voit kävellä kadulla useisiin ruokailu-, juoma- ja leikkipaikkoihin. Tässä osassa kaupunkia on paljon hienoja ravintoloita, joten sinun on hemmotella valinnanvaraa, kun haluat syödä tai juoda kasinon pelaamisen jälkeen. Joitakin parhaita ruokapaikkoja ovat Panda Express, Wolfgang Puck\'s, Kapteeni Nemon Seafood House ja Bon appetit! Jos sinulla on vapaa -aikaa, kannattaa käydä lyhyellä kävelyllä kadulla ylös ja alas kokeillaksesi paikallisia ostoskokemuksia. Täällä on useita huippuluokan putiikkeja ja erikoisravintoloita sekä useita ylellisiä lomakohteita niille, jotka haluavat pysyä lähellä toimintaa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Jos etsit hotellia, joka sijaitsee keskeisellä paikalla, lähellä joitakin suuria kasinoita, kannattaa harkita yöpymistä Bellagiossa. Tämä on yksi Las Vegasin suosituimmista hotelleista, joten voit kävellä helposti kaikkiin edellä mainittuihin paikkoihin. Sinulla on myös kaikki mukavuudet, joita voit odottaa miltä tahansa Las Vegasin parhaalta hotellilta. Tämä paikka tarjoaa laajan valikoiman majoitusvaihtoehtoja luksuksesta halpaan ja kaikkea siltä väliltä. Jos haluat matkallasi nauttia Las Vegasin nähtävyyksistä, äänistä ja tuoksuista, sinun kannattaa ehdottomasti pysyä lähellä tätä jännittävää kasinoa.</p>\n<!-- /wp:paragraph -->','Mikä on muotisuunnittelu?','','publish','closed','closed','','mika-on-muotisuunnittelu','','','2023-12-11 11:09:40','2023-12-11 11:09:40','',0,'https://sadepisaroitaniitynkukkasilla.fi/?p=170',0,'post','',0),(171,1,'2021-08-18 08:37:54','2021-08-18 08:37:54','<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto, joka on omistettu vaatteiden ja muiden elämäntapa -asusteiden luomiseen. Moderni muotisuunnittelu on jaettu kahteen perusluokkaan: haute couture ja ready-to-wear. Haute couture -mallisto on omistettu tietyille asiakkaille, ja se on räätälöity juuri näille asiakkaille. Voidakseen haute couture housea suunnittelijan on kuuluttava Haute Couturen syndikaattikamariin ja näytettävä uusi kokoelma kahdesti vuodessa, jossa esitetään vähintään 35 erilaista asua joka kerta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valmisvaatemallistot ovat vakiokokoisia, eivät mittatilaustyönä, joten ne sopivat paremmin suuriin tuotantosarjoihin. Ne on myös jaettu kahteen luokkaan: suunnittelija/luomista ja makeisia. Suunnittelijakokoelmilla on korkeampi laatu ja viimeistely sekä ainutlaatuinen muotoilu. Ne edustavat usein tiettyä filosofiaa, ja ne on luotu lausunnon antamiseen eikä myyntiin. Sekä ready-to-wear- että haute-couture -mallistot esitetään kansainvälisillä catwalkeilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kuka sen keksi?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ensimmäinen muotisuunnittelija, joka oli enemmän kuin yksinkertainen ompelija, oli Charles Frederick Worth 1800 -luvulla. Ennen kuin hän perusti muotisuunnittelutalonsa Pariisiin, vaatteet valmistivat nimettömät pukijat ja muotistandardit johdettiin rojaltien käyttämistä tyyleistä. Worth oli ensimmäinen suunnittelija, joka todella saneli asiakkailleen, mitä pukeutua, eikä seurannut heidän vaatimuksiaan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hänen muotitalostaan ​​tuli niin kuuluisa, että ihmiset pystyivät liittämään kuviin kasvot ja nimen, kun he tiesivät olevansa Worthin talosta. Tästä alkoi perinne, jonka mukaan talon suunnittelija ei ainoastaan ​​luonut vaatteita, vaan myös edustaa brändin symbolia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Mitä muotisuunnittelijaksi tarvitaan?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto. Jotta voit työskennellä suunnittelijana, sinulla on oltava taiteellinen ja luova persoonallisuus. Sinun on myös oltava hyvä piirtämään ja kyettävä ilmaisemaan ideasi luonnoksissa. Sinun ei välttämättä tarvitse olla suuri taiteilija, mutta sinulla on oltava erityisiä taitoja värien, sävyjen ja sävyjen yhdistämisessä. Sinun on myös voitava työskennellä kankaan kanssa ja käyttää tekstiilejä luovasti ja omaperäisesti. Muotisuunnittelijoilla on hyvä visuaalinen mielikuvitus ja he pystyvät ajattelemaan kolmiulotteisesti ja toteuttamaan ideansa vaatteisiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoiden on oltava tietoisia muotimarkkinoiden vaatimuksista. Heidän on oltava erittäin kiinnostuneita oppimaan uusia asioita ja lukemaan muotisuunnittelun historiaa ja uusia suuntauksia käsitteleviä aikakauslehtiä, lehtiä ja kirjoja. Heidän on myös oltava kiinnostuneita taiteesta, vierailla taidegallerioissa ja olla vuorovaikutuksessa kaikenlaisten taiteilijoiden kanssa aina, kun heillä on tilaisuus. Suunnittelijalla tulee myös olla jonkin verran tietoa ja kokemusta räätälöinnistä (leikkaus, verhoilu, ompelu jne.) Ja pystyä erottamaan eri kankaan laatutasot.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Myös muotisuunnittelussa tarvitaan hyvää ymmärrystä yleisön elämäntavoista ja asiakkaiden tarpeista ja vaatimuksista. Suunnittelijoilla tulee olla hyvät viestintätaidot ja heidän on voitava ilmaista ajatuksensa selkeästi. Mutta mikä tärkeintä, niiden on oltava hyvin omaperäisiä ja niissä on oltava tuoreita, innovatiivisia ideoita.</p>\n<!-- /wp:paragraph -->','Mikä on muotisuunnittelu?','','inherit','closed','closed','','170-revision-v1','','','2021-08-18 08:37:54','2021-08-18 08:37:54','',170,'https://sadepisaroitaniitynkukkasilla.fi/?p=171',0,'revision','',0),(173,1,'2021-08-18 08:43:56','2021-08-18 08:43:56','<!-- wp:heading -->\n<h2>Mikä on muotisuunnittelija?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoilla on erityinen paikka maailmassa. Heidän lahjakkuudellaan ja näkemyksellään on suuri merkitys ihmisten ulkonäössä ja ne edistävät myös kulttuurista ja sosiaalista ympäristöä. He rakastavat tutkia muotitrendejä, luonnostella malleja, valita materiaaleja ja osallistua kaikkiin suunnittelunsa <a href=\"/mika-on-muotisuunnittelu\">tuotantoon </a>liittyviin näkökohtiin. Ne myötävaikuttavat miljoonien, elleivät miljardien, kuluttajien vuosittain ostamien vaatteiden ja asusteiden luomiseen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat mainostavat itseään markkinoinnin ja mainonnan avulla. Jotkut suunnittelijat markkinoivat muotiaan kiitotie -esitysten sekä omien vähittäiskauppojensa kautta. Jotkut myös lainaavat nimensä muille lisensoiduille tuotteille laajentaakseen brändi -identiteettiään. Itse asiassa monet julkkisten muotisuunnittelijat suunnittelevat hyvin vähän heidän nimensä kantavia kokoelmia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Mitä muotisuunnittelija tekee?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat luovat naisten, miesten ja lasten vaatteita. Näitä voivat olla urheiluvaatteet, äitiysvaatteet, päällysvaatteet, alusvaatteet, juhlapuvut, silmälasit ja jalkineet. On myös asustussuunnittelijoita, jotka suunnittelevat vyöjä, huiveja, hattuja, käsilaukkuja ja sukkia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoita on muoti-alan eri tasoilla, tunnetuista couturierista, tuntemattomista muotisuunnittelijoista, jotka työskentelevät valmiissa asuintalossa, ja muotityylisteihin, jotka saattavat tehdä vain pieniä muutoksia olemassa oleviin malleihin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat ovat nyt alkaneet käyttää uusia tekniikoita, kuten kehon skannausta paremman mukautetun istuvuuden saavuttamiseksi, tai saumattomia neulontatekniikoita, jotka voivat tuottaa vaatteita vain yhdellä napin painalluksella. Samoin kuin ompelukone muutti menneisyyden muotia, tulevaisuus muuttuu uusien tekniikoiden, resurssien ja työkalujen ansiosta. Korkean teknologian tekstiilit mahdollistavat muotisuunnittelijoiden luoda uusia tuotelinjoja, mukaan lukien aurinkosuojatuotteet ja muut ainutlaatuiset ominaisuudet. Uusilla kuluttajien vaatimuksilla ja mieltymyksillä voi olla jopa enemmän tekemistä toiminnon kuin muodin kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Suunnitteluprosessi suunnittelukonseptista lopulliseen tuotantoon kestää monta kuukautta. Nykyisten muotitrendien tutkiminen ja tulevien trendien ennustaminen on ensimmäinen askel suunnittelun luomisessa. Jotkut muotisuunnittelijat tekevät omaa tutkimustaan, kun taas toiset ovat riippuvaisia ​​muotialan ammattiryhmien julkaisemista trendiraporteista. Trendiraportit kertovat, mitkä tyylit, värit ja kankaat ovat suosittuja tietyn kauden aikana lähitulevaisuudessa. Tekstiilivalmistajat käyttävät näitä trendiraportteja kankaiden ja kuvioiden suunnitteluun, kun taas muotisuunnittelijat alkavat luonnostaa malleja. Suunnittelijat vierailevat sitten valmistajilla tai messuilla saadakseen näytteitä kankaista ja selvittääkseen, mitä kankaita käytetään minkä tahansa mallin kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelija osallistuu lähes kaikkeen muodin <a href=\"/matkailu\">tuomiseen </a>yleisölle. Perussuunnittelun voi tehdä eri tavoilla. Se voi sisältää kuvakäsikirjoituksia, joissa on luonnoksia, töitä nuken kanssa ja ompelemalla materiaalikappaleita yhteen. Tämä luomisvaihe on, kun suunnittelija ottaa näkemyksensä, joka pyörii mielen silmässä, ja laittaa sen visuaaliseen ilmeeseen. Tätä suunnittelun ensimmäistä luonnosta käsitellään, kun suunnittelija kehittää ensimmäisen perusprototyypin.</p>\n<!-- /wp:paragraph -->','Mitä muotisuunnittelija tekee?','','publish','closed','closed','','mita-muotisuunnittelija-tekee','','','2023-12-11 11:09:40','2023-12-11 11:09:40','',0,'https://sadepisaroitaniitynkukkasilla.fi/?p=173',0,'post','',0),(174,1,'2021-08-18 08:43:56','2021-08-18 08:43:56','<!-- wp:heading -->\n<h2>Mikä on muotisuunnittelija?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoilla on erityinen paikka maailmassa. Heidän lahjakkuudellaan ja näkemyksellään on suuri merkitys ihmisten ulkonäössä ja ne edistävät myös kulttuurista ja sosiaalista ympäristöä. He rakastavat tutkia muotitrendejä, luonnostella malleja, valita materiaaleja ja osallistua kaikkiin suunnittelunsa tuotantoon liittyviin näkökohtiin. Ne myötävaikuttavat miljoonien, elleivät miljardien, kuluttajien vuosittain ostamien vaatteiden ja asusteiden luomiseen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat mainostavat itseään markkinoinnin ja mainonnan avulla. Jotkut suunnittelijat markkinoivat muotiaan kiitotie -esitysten sekä omien vähittäiskauppojensa kautta. Jotkut myös lainaavat nimensä muille lisensoiduille tuotteille laajentaakseen brändi -identiteettiään. Itse asiassa monet julkkisten muotisuunnittelijat suunnittelevat hyvin vähän heidän nimensä kantavia kokoelmia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Mitä muotisuunnittelija tekee?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat luovat naisten, miesten ja lasten vaatteita. Näitä voivat olla urheiluvaatteet, äitiysvaatteet, päällysvaatteet, alusvaatteet, juhlapuvut, silmälasit ja jalkineet. On myös asustussuunnittelijoita, jotka suunnittelevat vyöjä, huiveja, hattuja, käsilaukkuja ja sukkia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoita on muoti-alan eri tasoilla, tunnetuista couturierista, tuntemattomista muotisuunnittelijoista, jotka työskentelevät valmiissa asuintalossa, ja muotityylisteihin, jotka saattavat tehdä vain pieniä muutoksia olemassa oleviin malleihin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat ovat nyt alkaneet käyttää uusia tekniikoita, kuten kehon skannausta paremman mukautetun istuvuuden saavuttamiseksi, tai saumattomia neulontatekniikoita, jotka voivat tuottaa vaatteita vain yhdellä napin painalluksella. Samoin kuin ompelukone muutti menneisyyden muotia, tulevaisuus muuttuu uusien tekniikoiden, resurssien ja työkalujen ansiosta. Korkean teknologian tekstiilit mahdollistavat muotisuunnittelijoiden luoda uusia tuotelinjoja, mukaan lukien aurinkosuojatuotteet ja muut ainutlaatuiset ominaisuudet. Uusilla kuluttajien vaatimuksilla ja mieltymyksillä voi olla jopa enemmän tekemistä toiminnon kuin muodin kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Suunnitteluprosessi suunnittelukonseptista lopulliseen tuotantoon kestää monta kuukautta. Nykyisten muotitrendien tutkiminen ja tulevien trendien ennustaminen on ensimmäinen askel suunnittelun luomisessa. Jotkut muotisuunnittelijat tekevät omaa tutkimustaan, kun taas toiset ovat riippuvaisia ​​muotialan ammattiryhmien julkaisemista trendiraporteista. Trendiraportit kertovat, mitkä tyylit, värit ja kankaat ovat suosittuja tietyn kauden aikana lähitulevaisuudessa. Tekstiilivalmistajat käyttävät näitä trendiraportteja kankaiden ja kuvioiden suunnitteluun, kun taas muotisuunnittelijat alkavat luonnostaa malleja. Suunnittelijat vierailevat sitten valmistajilla tai messuilla saadakseen näytteitä kankaista ja selvittääkseen, mitä kankaita käytetään minkä tahansa mallin kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelija osallistuu lähes kaikkeen muodin tuomiseen yleisölle. Perussuunnittelun voi tehdä eri tavoilla. Se voi sisältää kuvakäsikirjoituksia, joissa on luonnoksia, töitä nuken kanssa ja ompelemalla materiaalikappaleita yhteen. Tämä luomisvaihe on, kun suunnittelija ottaa näkemyksensä, joka pyörii mielen silmässä, ja laittaa sen visuaaliseen ilmeeseen. Tätä suunnittelun ensimmäistä luonnosta käsitellään, kun suunnittelija kehittää ensimmäisen perusprototyypin.</p>\n<!-- /wp:paragraph -->','Mitä muotisuunnittelija tekee?','','inherit','closed','closed','','173-revision-v1','','','2021-08-18 08:43:56','2021-08-18 08:43:56','',173,'https://sadepisaroitaniitynkukkasilla.fi/?p=174',0,'revision','',0),(175,1,'2021-08-18 08:50:45','2021-08-18 08:50:45','<!-- wp:paragraph -->\n<p>Matkailukokemuksilla on yksi tärkeimmistä rooleista, miksi niin monet meistä jatkavat maailman tutkimista. Vaikka tämä teknologian aikakausi sallii meidän dokumentoida lähes joka päivämme, mikään ei ole verrattavissa siihen, että kokee jotain omakohtaisesti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>AVOIN MIELI</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vierailu jonnekin, johon et vielä tunne, tarkoittaa, että sinulla on avoin mieli. Mutta altistuminen odottamattomille matkoilla antaa sinulle mahdollisuuden laajentaa mielesi niin paljon pidemmälle. Tämä koskee kulttuuria, uskontoa, ruokaa ja ihmisiä. Avoin mieli ja halukkuus sukeltaa pää ensin kokemukseen tekevät matkakokemuksista poikkeuksellisia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>RAJOITA RAJOITASI</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yksi parhaista asioista, joita voit tehdä matkoilla, on poistua mukavuusalueeltasi. Itsesi työntäminen henkisesti, fyysisesti ja emotionaalisesti tuottaa usein upeimpia palkintoja. Scott Mountain Holidays venyttää rajojasi sekä räätälöityjen että jäsenneltyjen ryhmämatkojen kautta. Mutta ei hätää. Rajasi voivat olla venytettyjä, mutta kun Andy on oppaasi, sinusta pidetään hyvää huolta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>EMBRACE JA YHTEYS</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Erityisen matkakokemuksen luominen tarkoittaa, että sinun on oltava valmis ottamaan vastaan ​​vuorovaikutusta paikallisten, luonnon ja kulttuurin kanssa. Tämä antaa sinulle monipuolisen kokemuksen paikasta ja mahdollisuuden olla vuorovaikutuksessa samanhenkisten ihmisten kanssa ympäri maailmaa. Kiertueen suorittaminen Scot Mountain Holidaysin avulla antaa sinulle myös harvinaisen tilaisuuden todella omaksua Skotlanti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>OLE HETKISSÄ</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Valokuvat ja videot ovat loistava tapa kaapata matkan parhaat hetket. Matkustaminen on kuitenkin myös loistava tilaisuus ottaa askel pois tekniikasta. Matkoilla voit olla läsnä hetkessä sen sijaan, että kokisit sen puhelimen linssin kautta. Joten tee matkakokemuksestasi erityisen erityinen ja käytä tilaisuutta arvostamaan todella sitä paikkaa, jossa olet ja mitä olet alttiina. Scot Mountain Holidays -vaellus- ja kävelyretket antavat sinulle mahdollisuuden tehdä tämän, ja sinulla on runsaasti mahdollisuuksia piilottaa kamerasi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Scot Mountain Holidays on kyse kokemuksista. Osallistu kävely-, vaellus- tai maastopyöräilylomille upeassa Skotlannissa, ja lähdet kotiin matkalla muistojen ja kokemusten kanssa, jotka pysyvät kanssasi ikuisesti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Oletko samaa mieltä? Haluaisitko lisätä jotain omiin matkakokemuksiisi? Meille parhaat muistot ovat aina saaneet aikaan kokemuksia, joita meillä on ollut paikallisten ihmisten kanssa, ja epätavallisia aktiivisia kokemuksia. Mikä on antanut sinulle ikimuistoisimman matkakokemuksen?</p>\n<!-- /wp:paragraph -->','Matkakokemuksia','','inherit','closed','closed','','169-revision-v1','','','2021-08-18 08:50:45','2021-08-18 08:50:45','',169,'https://sadepisaroitaniitynkukkasilla.fi/?p=175',0,'revision','',0),(177,1,'2021-08-18 08:58:49','2021-08-18 08:58:49','<!-- wp:paragraph -->\n<p>Matkailu</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Matkailu, toiminta ja prosessi viettää aikaa poissa kotoa virkistäytymiseen, rentoutumiseen ja nautintoon samalla kun hyödynnetään kaupallista palvelujen tarjontaa. Matkailu on sellaisenaan nykyaikaisten sosiaalisten järjestelyjen tuote, joka alkoi Länsi -Euroopasta 1600 -luvulla, vaikka sillä on edeltäjiä <a href=\"/mita-muotisuunnittelija-tekee\">klassisessa </a>muinaisuudessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Matkailu eroaa tutkimusmatkailusta siinä, että turistit kulkevat ”pahoinpidettyä polkua”, hyötyvät vakiintuneista tarjontajärjestelmistä ja ovat nautinnonhakijoiden tapaan yleensä eristetty vaikeuksista, vaaroista ja kiusaamisesta. Matkailu on kuitenkin päällekkäistä muiden toimintojen, etujen ja prosessien kanssa, mukaan lukien esimerkiksi pyhiinvaellus. Tästä syntyy jaettuja luokkia, kuten \"liikematkailu\", \"urheilumatkailu\" ja \"lääketieteellinen matkailu\" (kansainvälinen matka, joka tehdään sairaanhoidon saamiseksi).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Matkailun alkuperä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>vuosisadan alkuun mennessä kansainvälisestä matkailusta oli tullut yksi maailman tärkeimmistä taloudellisista toiminnoista, ja sen vaikutus tuli yhä selvemmäksi arktisesta alueesta Etelämantereelle. Matkailun historia on siksi erittäin kiinnostava ja tärkeä. Tämä historia alkaa kauan ennen kuin turisti -sana syntyi 1700 -luvun lopussa. Länsimaisessa perinteessä muinaisessa Kreikassa ja Roomassa on järjestettyjä matkoja, joilla on tukeva infrastruktuuri, nähtävyydet ja tärkeiden kohteiden ja kokemusten korostaminen, jotka voivat väittää sekä \"perintöturismin\" alkuperää (pyritään juhlimaan ja arvostamaan) historiallisista kohteista, joilla on kulttuurinen merkitys) ja rantalomakohteista. Maailman seitsemästä ihmeestä tuli kreikkalaisten ja roomalaisten matkailukohteita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pyhiinvaellus tarjoaa samanlaisia ​​edeltäjiä, jotka tuovat itäisiä sivilisaatioita peliin. Sen uskonnolliset tavoitteet esiintyvät rinnakkain määriteltyjen reittien, kaupallisen vieraanvaraisuuden ja uteliaisuuden, seikkailun ja nautinnon sekoituksen kanssa osallistujien motiivien joukossa. Pyhiinvaellus varhaisimpiin buddhalaisiin kohteisiin alkoi yli 2000 vuotta sitten, vaikka on vaikea määritellä siirtymistä pienten munkkiryhmien väliaikaisista puutteista tunnistettaviin matkailukäytäntöihin. Pyhiinvaellus Mekkaan on samanlaista antiikkia. Hajjin turistiasema on ongelmallinen, kun otetaan huomioon uhrien määrä, jotka kärsivät - jopa 21. vuosisadalla - edelleen autiomaa -matkalla. Lämpökylpylä matkailukohteena-riippumatta pyhiinvaellusyhdistyksistä, joissa sivusto on pyhä kaivo tai pyhä lähde-ei välttämättä ole eurooppalainen keksintö, vaikka sen englanninkielinen merkintä on peräisin Spa: sta, joka on varhainen lomakeskus nykyisessä Belgiassa. Vanhimmat japanilaiset onsenit (kuumia lähteitä) tarjoilivat kylpijöitä ainakin 6. vuosisadalta. Matkailu on ollut maailmanlaajuinen ilmiö alusta <a href=\"/mika-on-muotisuunnittelu\">alkaen</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nykyaikainen matkailu on yhä voimakkaampaa, kaupallisesti järjestettyä, yrityskeskeistä toimintaa, jonka juuret löytyvät teollisesta ja teollisesta länsimaasta. Aristokraattinen suuri kiertue Ranskan, Saksan ja erityisesti Italian kulttuurikohteissa - mukaan lukien klassiseen roomalaiseen matkailuun liittyvät juuret - juurtui 1500 -luvulle. Se kasvoi kuitenkin nopeasti ja laajensi maantieteellistä alueitaan kattamaan Alppien maisemat 1700 -luvun jälkipuoliskolla Euroopan sotien välissä. (Jos totuus on historiallisesti ensimmäinen sodan uhri, matkailu on toinen, vaikka se voi myöhemmin sisällyttää pyhiinvaelluksia haudoille ja taistelukentille ja jopa 1900 -luvun loppuun mennessä keskitysleireille.) Osana suuren kiertueen laajentumista yksinoikeutta heikennettiin, kun kasvavat kaupalliset, ammatilliset ja teolliset keskitasot liittyivät maanomistajiin ja poliittisiin luokkiin pyrkiessään pääsemään tähän poikiensa rituaaliin. 1800 -luvun alkuun mennessä eurooppalaisista terveys-, vapaa -ajan- ja kulttuurimatkoista tuli yleinen käytäntö keskiluokkien keskuudessa ja polkuja kulttuuripääoman hankkimiseen (se osaaminen, kokemus ja kiillotus, joka oli välttämätöntä sekoittaa kohtelias yhteiskunta) tasoitettiin oppailla, alukkeilla, taide- ja matkamuistomarkkinoiden kehityksellä sekä huolellisesti kalibroiduilla kuljetus- ja majoitusjärjestelmillä.</p>\n<!-- /wp:paragraph -->','Matkailu','','publish','closed','closed','','matkailu','','','2023-12-11 11:09:40','2023-12-11 11:09:40','',0,'https://sadepisaroitaniitynkukkasilla.fi/?p=177',0,'post','',0),(178,1,'2021-08-18 08:58:43','2021-08-18 08:58:43','<!-- wp:paragraph -->\n<p>Matkailu</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Matkailu, toiminta ja prosessi viettää aikaa poissa kotoa virkistäytymiseen, rentoutumiseen ja nautintoon samalla kun hyödynnetään kaupallista palvelujen tarjontaa. Matkailu on sellaisenaan nykyaikaisten sosiaalisten järjestelyjen tuote, joka alkoi Länsi -Euroopasta 1600 -luvulla, vaikka sillä on edeltäjiä klassisessa muinaisuudessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Matkailu eroaa tutkimusmatkailusta siinä, että turistit kulkevat ”pahoinpidettyä polkua”, hyötyvät vakiintuneista tarjontajärjestelmistä ja ovat nautinnonhakijoiden tapaan yleensä eristetty vaikeuksista, vaaroista ja kiusaamisesta. Matkailu on kuitenkin päällekkäistä muiden toimintojen, etujen ja prosessien kanssa, mukaan lukien esimerkiksi pyhiinvaellus. Tästä syntyy jaettuja luokkia, kuten \"liikematkailu\", \"urheilumatkailu\" ja \"lääketieteellinen matkailu\" (kansainvälinen matka, joka tehdään sairaanhoidon saamiseksi).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Matkailun alkuperä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>vuosisadan alkuun mennessä kansainvälisestä matkailusta oli tullut yksi maailman tärkeimmistä taloudellisista toiminnoista, ja sen vaikutus tuli yhä selvemmäksi arktisesta alueesta Etelämantereelle. Matkailun historia on siksi erittäin kiinnostava ja tärkeä. Tämä historia alkaa kauan ennen kuin turisti -sana syntyi 1700 -luvun lopussa. Länsimaisessa perinteessä muinaisessa Kreikassa ja Roomassa on järjestettyjä matkoja, joilla on tukeva infrastruktuuri, nähtävyydet ja tärkeiden kohteiden ja kokemusten korostaminen, jotka voivat väittää sekä \"perintöturismin\" alkuperää (pyritään juhlimaan ja arvostamaan) historiallisista kohteista, joilla on kulttuurinen merkitys) ja rantalomakohteista. Maailman seitsemästä ihmeestä tuli kreikkalaisten ja roomalaisten matkailukohteita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pyhiinvaellus tarjoaa samanlaisia ​​edeltäjiä, jotka tuovat itäisiä sivilisaatioita peliin. Sen uskonnolliset tavoitteet esiintyvät rinnakkain määriteltyjen reittien, kaupallisen vieraanvaraisuuden ja uteliaisuuden, seikkailun ja nautinnon sekoituksen kanssa osallistujien motiivien joukossa. Pyhiinvaellus varhaisimpiin buddhalaisiin kohteisiin alkoi yli 2000 vuotta sitten, vaikka on vaikea määritellä siirtymistä pienten munkkiryhmien väliaikaisista puutteista tunnistettaviin matkailukäytäntöihin. Pyhiinvaellus Mekkaan on samanlaista antiikkia. Hajjin turistiasema on ongelmallinen, kun otetaan huomioon uhrien määrä, jotka kärsivät - jopa 21. vuosisadalla - edelleen autiomaa -matkalla. Lämpökylpylä matkailukohteena-riippumatta pyhiinvaellusyhdistyksistä, joissa sivusto on pyhä kaivo tai pyhä lähde-ei välttämättä ole eurooppalainen keksintö, vaikka sen englanninkielinen merkintä on peräisin Spa: sta, joka on varhainen lomakeskus nykyisessä Belgiassa. Vanhimmat japanilaiset onsenit (kuumia lähteitä) tarjoilivat kylpijöitä ainakin 6. vuosisadalta. Matkailu on ollut maailmanlaajuinen ilmiö alusta alkaen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nykyaikainen matkailu on yhä voimakkaampaa, kaupallisesti järjestettyä, yrityskeskeistä toimintaa, jonka juuret löytyvät teollisesta ja teollisesta länsimaasta. Aristokraattinen suuri kiertue Ranskan, Saksan ja erityisesti Italian kulttuurikohteissa - mukaan lukien klassiseen roomalaiseen matkailuun liittyvät juuret - juurtui 1500 -luvulle. Se kasvoi kuitenkin nopeasti ja laajensi maantieteellistä alueitaan kattamaan Alppien maisemat 1700 -luvun jälkipuoliskolla Euroopan sotien välissä. (Jos totuus on historiallisesti ensimmäinen sodan uhri, matkailu on toinen, vaikka se voi myöhemmin sisällyttää pyhiinvaelluksia haudoille ja taistelukentille ja jopa 1900 -luvun loppuun mennessä keskitysleireille.) Osana suuren kiertueen laajentumista yksinoikeutta heikennettiin, kun kasvavat kaupalliset, ammatilliset ja teolliset keskitasot liittyivät maanomistajiin ja poliittisiin luokkiin pyrkiessään pääsemään tähän poikiensa rituaaliin. 1800 -luvun alkuun mennessä eurooppalaisista terveys-, vapaa -ajan- ja kulttuurimatkoista tuli yleinen käytäntö keskiluokkien keskuudessa ja polkuja kulttuuripääoman hankkimiseen (se osaaminen, kokemus ja kiillotus, joka oli välttämätöntä sekoittaa kohtelias yhteiskunta) tasoitettiin oppailla, alukkeilla, taide- ja matkamuistomarkkinoiden kehityksellä sekä huolellisesti kalibroiduilla kuljetus- ja majoitusjärjestelmillä.</p>\n<!-- /wp:paragraph -->','Matkailu','','inherit','closed','closed','','177-revision-v1','','','2021-08-18 08:58:43','2021-08-18 08:58:43','',177,'https://sadepisaroitaniitynkukkasilla.fi/?p=178',0,'revision','',0),(179,1,'2021-08-18 09:54:13','2021-08-18 09:54:13','<!-- wp:heading -->\n<h2>Ruoanlaitosta nautittava kokemus</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ruoanlaitto on iloa monille ihmisille, kun taas jotkut näyttävät pelkäävän sitä kuin ruttoa! Monet tekijät vaikuttavat tähän rakkaus- tai vihasuhteeseen, joka niin monilla on ruoanlaiton kanssa; luonteenpiirteet, aiemmat ruoanlaittokokemukset, sukupolvelta toiselle siirtynyt tieto. Joillekin ei-keittimille ei yksinkertaisesti ole koskaan opetettu kunnolla ruoan valmistustapoja. Toiset eivät yksinkertaisesti olleet kiinnostuneita oppimisesta, koska heidän äitinsä, isänsä tai muu huoltajansa tekivät aina työn. <a href=\"/matkakokemuksia\">Ruoanlaitosta </a>voi kuitenkin tehdä nautinnollisen kokemuksen, jossa on vähän luovuutta ja jonkin verran tietoa<br>prosessista. Ne, jotka eivät voi edes keittää vettä, voivat oppia ja ajan myötä jopa tulla kokkaustaiteen asiantuntijoiksi!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Ruoanlaitto tarkoituksella ja suunnitelmalla</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Usein kompastumme keittiöön ja avaamme jääkaapin vain tuijottaaksemme sitä tyhjästi ilman aavistustakaan mistä aloittaa. Haluamme vain jotain, ja haluamme sen nyt! Kuitenkin ruoanlaitto ilolla saavutetaan, kun ruoanlaitolla on tarkoitus ja suunnitelma auttaa sinua. Ruoanlaiton tarkoitus voi olla se, että haluat tarjota terveellistä, kokonaista ja ravitsevaa ruokaa kasvaville lapsillesi ja miehellesi tai vaimollesi. Haluat, että heillä on terveimmät elimet, joita he voivat, ja haluat nähdä niiden menestyvän. Tämä motivaatio voi tarjota sinulle iloa ruoanlaittokokemuksestasi tietäen, että annat heille parhaan, mitä heidän ruumiinsa ansaitsevat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Toinen hyvä tapa alkaa nauttia ruoanlaitosta on suunnitella. Aterian suunnittelu etukäteen vaatii stressiä ja taistelua päättäessäsi pois viime hetken valmistelusta. Suunnittelu auttaa varmistamaan, että sinulla on oikeat raaka -aineet käsilläsi ruoan valmistamiseksi, etkä turhaudu aterian keksimiseen ja luovuttamiseen. Suunnitelman avulla voit valmistaa aterian rauhallisesti, vaikka kuuntelet <a href=\"/gf\">musiikkia</a> tai puhut ystävällesi puhelimessa. Tämä auttaa sinua rentoutumaan myös iltaisin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Oikea asenne ruoanlaittoon tekee siitä paljon kokemuksen. On totta, että jotkut ovat yleensä luonnollisempia ruoanvalmistuksessa, mutta tämä ei ole tekosyy olla yrittämättä kokata terveellistä ateriaa. Jokainen voi oppia valmistamaan yksinkertaisia ​​ja maukkaita aterioita itselleen ja rakkailleen joka päivä. Älä anna pitkäaikaisen vastenmielisyyden ruoanlaittoon saada sinut tarttumaan TV-illalliseen. Tämä ei ole vain terveydelle haitallista, vaan se on kallis tapa syödä. Jos annat lastesi auttaa sinua keittiössä, se voi myös luoda hauskaa ja tulla heille suureksi oppimiskokemukseksi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kotona ruoanlaiton edut</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Olitpa yksin tai olet kiireinen vanhempi, löytää aikaa ja energiaa kotitekoisten aterioiden valmistamiseen. Kiireisen päivän päätteeksi ulkona syöminen tai tilaaminen saattaa tuntua nopeimmalta ja helpoimmalta vaihtoehdolta. Mutta mukavuus ja jalostettu ruoka voivat vaikuttaa merkittävästi mielialaan ja terveyteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valmisruoka sisältää tyypillisesti paljon kemiallisia lisäaineita, hormoneja, sokeria, suolaa, epäterveellistä rasvaa ja kaloreita, jotka kaikki voivat vaikuttaa haitallisesti aivoihisi ja näkymiisi. Se voi aiheuttaa väsymystä, turvotusta ja ärtyneisyyttä ja pahentaa masennuksen, stressin ja ahdistuksen oireita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ravintolat tarjoavat usein enemmän ruokaa kuin sinun pitäisi syödä. Monet ravintolat tarjoavat annoksia, jotka ovat kaksi tai kolme kertaa suurempia kuin suositellut ruokavalio -ohjeet. Tämä kannustaa sinua syömään enemmän kuin kotona, mikä vaikuttaa haitallisesti vyötäröön, verenpaineeseen ja diabeteksen riskiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kun valmistat aterioita itse, voit hallita paremmin ainesosia. Valmistamalla ruokaa itse voit varmistaa, että sinä ja perheesi syötte tuoreita, terveellisiä aterioita. Tämä voi auttaa sinua näyttämään ja tuntemaan itsesi terveemmäksi, lisäämään energiaasi, vakauttamaan painosi ja mielialasi sekä parantamaan unta ja kestävyyttä stressiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kotona ruoanlaiton ei tarvitse olla monimutkaista. Terveellisen ruokavalion kulmakivi on syödä ruokaa, joka on mahdollisimman lähellä luontoa. Tämä tarkoittaa sitä, että jalostettu ruoka tulee korvata oikealla ruoalla aina kun mahdollista ja syödä runsaasti vihanneksia ja terveellisiä proteiinilähteitä. Se ei tarkoita sitä, että sinun on vietettävä tunteja keittiössä yhdistämällä satoja eri ainesosia tai seuraamalla orjallisesti kehittyneitä reseptejä. Itse asiassa yksinkertaiset ateriat ovat usein maukkaimpia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kotona ruoanlaitto voi viedä jopa vähemmän aikaa kuin ulkona syöminen. On paljon nopeita, yksinkertaisia ​​ja terveellisiä aterioita, jotka voit valmistaa kotona lyhyemmässä ajassa kuin ravintolaan matkustaminen tai toimituksen odottaminen.</p>\n<!-- /wp:paragraph -->','The Real Joy of Cooking','','publish','closed','closed','','the-real-joy-of-cooking','','','2021-08-18 10:23:34','2021-08-18 10:23:34','',0,'https://sadepisaroitaniitynkukkasilla.fi/?page_id=179',0,'page','',0),(180,1,'2021-08-18 09:54:13','2021-08-18 09:54:13','<!-- wp:heading -->\n<h2>Ruoanlaitosta nautittava kokemus</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ruoanlaitto on iloa monille ihmisille, kun taas jotkut näyttävät pelkäävän sitä kuin ruttoa! Monet tekijät vaikuttavat tähän rakkaus- tai vihasuhteeseen, joka niin monilla on ruoanlaiton kanssa; luonteenpiirteet, aiemmat ruoanlaittokokemukset, sukupolvelta toiselle siirtynyt tieto. Joillekin ei-keittimille ei yksinkertaisesti ole koskaan opetettu kunnolla ruoan valmistustapoja. Toiset eivät yksinkertaisesti olleet kiinnostuneita oppimisesta, koska heidän äitinsä, isänsä tai muu huoltajansa tekivät aina työn. Ruoanlaitosta voi kuitenkin tehdä nautinnollisen kokemuksen, jossa on vähän luovuutta ja jonkin verran tietoa<br>prosessista. Ne, jotka eivät voi edes keittää vettä, voivat oppia ja ajan myötä jopa tulla kokkaustaiteen asiantuntijoiksi!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Ruoanlaitto tarkoituksella ja suunnitelmalla</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Usein kompastumme keittiöön ja avaamme jääkaapin vain tuijottaaksemme sitä tyhjästi ilman aavistustakaan mistä aloittaa. Haluamme vain jotain, ja haluamme sen nyt! Kuitenkin ruoanlaitto ilolla saavutetaan, kun ruoanlaitolla on tarkoitus ja suunnitelma auttaa sinua. Ruoanlaiton tarkoitus voi olla se, että haluat tarjota terveellistä, kokonaista ja ravitsevaa ruokaa kasvaville lapsillesi ja miehellesi tai vaimollesi. Haluat, että heillä on terveimmät elimet, joita he voivat, ja haluat nähdä niiden menestyvän. Tämä motivaatio voi tarjota sinulle iloa ruoanlaittokokemuksestasi tietäen, että annat heille parhaan, mitä heidän ruumiinsa ansaitsevat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Toinen hyvä tapa alkaa nauttia ruoanlaitosta on suunnitella. Aterian suunnittelu etukäteen vaatii stressiä ja taistelua päättäessäsi pois viime hetken valmistelusta. Suunnittelu auttaa varmistamaan, että sinulla on oikeat raaka -aineet käsilläsi ruoan valmistamiseksi, etkä turhaudu aterian keksimiseen ja luovuttamiseen. Suunnitelman avulla voit valmistaa aterian rauhallisesti, vaikka kuuntelet musiikkia tai puhut ystävällesi puhelimessa. Tämä auttaa sinua rentoutumaan myös iltaisin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Oikea asenne ruoanlaittoon tekee siitä paljon kokemuksen. On totta, että jotkut ovat yleensä luonnollisempia ruoanvalmistuksessa, mutta tämä ei ole tekosyy olla yrittämättä kokata terveellistä ateriaa. Jokainen voi oppia valmistamaan yksinkertaisia ​​ja maukkaita aterioita itselleen ja rakkailleen joka päivä. Älä anna pitkäaikaisen vastenmielisyyden ruoanlaittoon saada sinut tarttumaan TV-illalliseen. Tämä ei ole vain terveydelle haitallista, vaan se on kallis tapa syödä. Jos annat lastesi auttaa sinua keittiössä, se voi myös luoda hauskaa ja tulla heille suureksi oppimiskokemukseksi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kotona ruoanlaiton edut</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Olitpa yksin tai olet kiireinen vanhempi, löytää aikaa ja energiaa kotitekoisten aterioiden valmistamiseen. Kiireisen päivän päätteeksi ulkona syöminen tai tilaaminen saattaa tuntua nopeimmalta ja helpoimmalta vaihtoehdolta. Mutta mukavuus ja jalostettu ruoka voivat vaikuttaa merkittävästi mielialaan ja terveyteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valmisruoka sisältää tyypillisesti paljon kemiallisia lisäaineita, hormoneja, sokeria, suolaa, epäterveellistä rasvaa ja kaloreita, jotka kaikki voivat vaikuttaa haitallisesti aivoihisi ja näkymiisi. Se voi aiheuttaa väsymystä, turvotusta ja ärtyneisyyttä ja pahentaa masennuksen, stressin ja ahdistuksen oireita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ravintolat tarjoavat usein enemmän ruokaa kuin sinun pitäisi syödä. Monet ravintolat tarjoavat annoksia, jotka ovat kaksi tai kolme kertaa suurempia kuin suositellut ruokavalio -ohjeet. Tämä kannustaa sinua syömään enemmän kuin kotona, mikä vaikuttaa haitallisesti vyötäröön, verenpaineeseen ja diabeteksen riskiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kun valmistat aterioita itse, voit hallita paremmin ainesosia. Valmistamalla ruokaa itse voit varmistaa, että sinä ja perheesi syötte tuoreita, terveellisiä aterioita. Tämä voi auttaa sinua näyttämään ja tuntemaan itsesi terveemmäksi, lisäämään energiaasi, vakauttamaan painosi ja mielialasi sekä parantamaan unta ja kestävyyttä stressiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kotona ruoanlaiton ei tarvitse olla monimutkaista. Terveellisen ruokavalion kulmakivi on syödä ruokaa, joka on mahdollisimman lähellä luontoa. Tämä tarkoittaa sitä, että jalostettu ruoka tulee korvata oikealla ruoalla aina kun mahdollista ja syödä runsaasti vihanneksia ja terveellisiä proteiinilähteitä. Se ei tarkoita sitä, että sinun on vietettävä tunteja keittiössä yhdistämällä satoja eri ainesosia tai seuraamalla orjallisesti kehittyneitä reseptejä. Itse asiassa yksinkertaiset ateriat ovat usein maukkaimpia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kotona ruoanlaitto voi viedä jopa vähemmän aikaa kuin ulkona syöminen. On paljon nopeita, yksinkertaisia ​​ja terveellisiä aterioita, jotka voit valmistaa kotona lyhyemmässä ajassa kuin ravintolaan matkustaminen tai toimituksen odottaminen.</p>\n<!-- /wp:paragraph -->','The Real Joy of Cooking','','inherit','closed','closed','','179-revision-v1','','','2021-08-18 09:54:13','2021-08-18 09:54:13','',179,'https://sadepisaroitaniitynkukkasilla.fi/?p=180',0,'revision','',0),(181,1,'2021-08-18 09:57:37','2021-08-18 09:57:37','<!-- wp:paragraph -->\n<p>Matkailu</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Matkailu, toiminta ja prosessi viettää aikaa poissa kotoa virkistäytymiseen, rentoutumiseen ja nautintoon samalla kun hyödynnetään kaupallista palvelujen tarjontaa. Matkailu on sellaisenaan nykyaikaisten sosiaalisten järjestelyjen tuote, joka alkoi Länsi -Euroopasta 1600 -luvulla, vaikka sillä on edeltäjiä <a href=\"/mita-muotisuunnittelija-tekee\">klassisessa </a>muinaisuudessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Matkailu eroaa tutkimusmatkailusta siinä, että turistit kulkevat ”pahoinpidettyä polkua”, hyötyvät vakiintuneista tarjontajärjestelmistä ja ovat nautinnonhakijoiden tapaan yleensä eristetty vaikeuksista, vaaroista ja kiusaamisesta. Matkailu on kuitenkin päällekkäistä muiden toimintojen, etujen ja prosessien kanssa, mukaan lukien esimerkiksi pyhiinvaellus. Tästä syntyy jaettuja luokkia, kuten \"liikematkailu\", \"urheilumatkailu\" ja \"lääketieteellinen matkailu\" (kansainvälinen matka, joka tehdään sairaanhoidon saamiseksi).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Matkailun alkuperä</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>vuosisadan alkuun mennessä kansainvälisestä matkailusta oli tullut yksi maailman tärkeimmistä taloudellisista toiminnoista, ja sen vaikutus tuli yhä selvemmäksi arktisesta alueesta Etelämantereelle. Matkailun historia on siksi erittäin kiinnostava ja tärkeä. Tämä historia alkaa kauan ennen kuin turisti -sana syntyi 1700 -luvun lopussa. Länsimaisessa perinteessä muinaisessa Kreikassa ja Roomassa on järjestettyjä matkoja, joilla on tukeva infrastruktuuri, nähtävyydet ja tärkeiden kohteiden ja kokemusten korostaminen, jotka voivat väittää sekä \"perintöturismin\" alkuperää (pyritään juhlimaan ja arvostamaan) historiallisista kohteista, joilla on kulttuurinen merkitys) ja rantalomakohteista. Maailman seitsemästä ihmeestä tuli kreikkalaisten ja roomalaisten matkailukohteita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pyhiinvaellus tarjoaa samanlaisia ​​edeltäjiä, jotka tuovat itäisiä sivilisaatioita peliin. Sen uskonnolliset tavoitteet esiintyvät rinnakkain määriteltyjen reittien, kaupallisen vieraanvaraisuuden ja uteliaisuuden, seikkailun ja nautinnon sekoituksen kanssa osallistujien motiivien joukossa. Pyhiinvaellus varhaisimpiin buddhalaisiin kohteisiin alkoi yli 2000 vuotta sitten, vaikka on vaikea määritellä siirtymistä pienten munkkiryhmien väliaikaisista puutteista tunnistettaviin matkailukäytäntöihin. Pyhiinvaellus Mekkaan on samanlaista antiikkia. Hajjin turistiasema on ongelmallinen, kun otetaan huomioon uhrien määrä, jotka kärsivät - jopa 21. vuosisadalla - edelleen autiomaa -matkalla. Lämpökylpylä matkailukohteena-riippumatta pyhiinvaellusyhdistyksistä, joissa sivusto on pyhä kaivo tai pyhä lähde-ei välttämättä ole eurooppalainen keksintö, vaikka sen englanninkielinen merkintä on peräisin Spa: sta, joka on varhainen lomakeskus nykyisessä Belgiassa. Vanhimmat japanilaiset onsenit (kuumia lähteitä) tarjoilivat kylpijöitä ainakin 6. vuosisadalta. Matkailu on ollut maailmanlaajuinen ilmiö alusta <a href=\"/mika-on-muotisuunnittelu\">alkaen</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nykyaikainen matkailu on yhä voimakkaampaa, kaupallisesti järjestettyä, yrityskeskeistä toimintaa, jonka juuret löytyvät teollisesta ja teollisesta länsimaasta. Aristokraattinen suuri kiertue Ranskan, Saksan ja erityisesti Italian kulttuurikohteissa - mukaan lukien klassiseen roomalaiseen matkailuun liittyvät juuret - juurtui 1500 -luvulle. Se kasvoi kuitenkin nopeasti ja laajensi maantieteellistä alueitaan kattamaan Alppien maisemat 1700 -luvun jälkipuoliskolla Euroopan sotien välissä. (Jos totuus on historiallisesti ensimmäinen sodan uhri, matkailu on toinen, vaikka se voi myöhemmin sisällyttää pyhiinvaelluksia haudoille ja taistelukentille ja jopa 1900 -luvun loppuun mennessä keskitysleireille.) Osana suuren kiertueen laajentumista yksinoikeutta heikennettiin, kun kasvavat kaupalliset, ammatilliset ja teolliset keskitasot liittyivät maanomistajiin ja poliittisiin luokkiin pyrkiessään pääsemään tähän poikiensa rituaaliin. 1800 -luvun alkuun mennessä eurooppalaisista terveys-, vapaa -ajan- ja kulttuurimatkoista tuli yleinen käytäntö keskiluokkien keskuudessa ja polkuja kulttuuripääoman hankkimiseen (se osaaminen, kokemus ja kiillotus, joka oli välttämätöntä sekoittaa kohtelias yhteiskunta) tasoitettiin oppailla, alukkeilla, taide- ja matkamuistomarkkinoiden kehityksellä sekä huolellisesti kalibroiduilla kuljetus- ja majoitusjärjestelmillä.</p>\n<!-- /wp:paragraph -->','Matkailu','','inherit','closed','closed','','177-revision-v1','','','2021-08-18 09:57:37','2021-08-18 09:57:37','',177,'https://sadepisaroitaniitynkukkasilla.fi/?p=181',0,'revision','',0),(182,1,'2021-08-18 09:58:14','2021-08-18 09:58:14','<!-- wp:heading -->\n<h2>Mikä on muotisuunnittelija?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoilla on erityinen paikka maailmassa. Heidän lahjakkuudellaan ja näkemyksellään on suuri merkitys ihmisten ulkonäössä ja ne edistävät myös kulttuurista ja sosiaalista ympäristöä. He rakastavat tutkia muotitrendejä, luonnostella malleja, valita materiaaleja ja osallistua kaikkiin suunnittelunsa <a href=\"/mika-on-muotisuunnittelu\">tuotantoon </a>liittyviin näkökohtiin. Ne myötävaikuttavat miljoonien, elleivät miljardien, kuluttajien vuosittain ostamien vaatteiden ja asusteiden luomiseen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat mainostavat itseään markkinoinnin ja mainonnan avulla. Jotkut suunnittelijat markkinoivat muotiaan kiitotie -esitysten sekä omien vähittäiskauppojensa kautta. Jotkut myös lainaavat nimensä muille lisensoiduille tuotteille laajentaakseen brändi -identiteettiään. Itse asiassa monet julkkisten muotisuunnittelijat suunnittelevat hyvin vähän heidän nimensä kantavia kokoelmia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Mitä muotisuunnittelija tekee?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat luovat naisten, miesten ja lasten vaatteita. Näitä voivat olla urheiluvaatteet, äitiysvaatteet, päällysvaatteet, alusvaatteet, juhlapuvut, silmälasit ja jalkineet. On myös asustussuunnittelijoita, jotka suunnittelevat vyöjä, huiveja, hattuja, käsilaukkuja ja sukkia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoita on muoti-alan eri tasoilla, tunnetuista couturierista, tuntemattomista muotisuunnittelijoista, jotka työskentelevät valmiissa asuintalossa, ja muotityylisteihin, jotka saattavat tehdä vain pieniä muutoksia olemassa oleviin malleihin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijat ovat nyt alkaneet käyttää uusia tekniikoita, kuten kehon skannausta paremman mukautetun istuvuuden saavuttamiseksi, tai saumattomia neulontatekniikoita, jotka voivat tuottaa vaatteita vain yhdellä napin painalluksella. Samoin kuin ompelukone muutti menneisyyden muotia, tulevaisuus muuttuu uusien tekniikoiden, resurssien ja työkalujen ansiosta. Korkean teknologian tekstiilit mahdollistavat muotisuunnittelijoiden luoda uusia tuotelinjoja, mukaan lukien aurinkosuojatuotteet ja muut ainutlaatuiset ominaisuudet. Uusilla kuluttajien vaatimuksilla ja mieltymyksillä voi olla jopa enemmän tekemistä toiminnon kuin muodin kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Suunnitteluprosessi suunnittelukonseptista lopulliseen tuotantoon kestää monta kuukautta. Nykyisten muotitrendien tutkiminen ja tulevien trendien ennustaminen on ensimmäinen askel suunnittelun luomisessa. Jotkut muotisuunnittelijat tekevät omaa tutkimustaan, kun taas toiset ovat riippuvaisia ​​muotialan ammattiryhmien julkaisemista trendiraporteista. Trendiraportit kertovat, mitkä tyylit, värit ja kankaat ovat suosittuja tietyn kauden aikana lähitulevaisuudessa. Tekstiilivalmistajat käyttävät näitä trendiraportteja kankaiden ja kuvioiden suunnitteluun, kun taas muotisuunnittelijat alkavat luonnostaa malleja. Suunnittelijat vierailevat sitten valmistajilla tai messuilla saadakseen näytteitä kankaista ja selvittääkseen, mitä kankaita käytetään minkä tahansa mallin kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelija osallistuu lähes kaikkeen muodin <a href=\"/matkailu\">tuomiseen </a>yleisölle. Perussuunnittelun voi tehdä eri tavoilla. Se voi sisältää kuvakäsikirjoituksia, joissa on luonnoksia, töitä nuken kanssa ja ompelemalla materiaalikappaleita yhteen. Tämä luomisvaihe on, kun suunnittelija ottaa näkemyksensä, joka pyörii mielen silmässä, ja laittaa sen visuaaliseen ilmeeseen. Tätä suunnittelun ensimmäistä luonnosta käsitellään, kun suunnittelija kehittää ensimmäisen perusprototyypin.</p>\n<!-- /wp:paragraph -->','Mitä muotisuunnittelija tekee?','','inherit','closed','closed','','173-revision-v1','','','2021-08-18 09:58:14','2021-08-18 09:58:14','',173,'https://sadepisaroitaniitynkukkasilla.fi/?p=182',0,'revision','',0),(183,1,'2021-08-18 10:18:56','2021-08-18 10:18:56','<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto, joka on omistettu vaatteiden ja muiden elämäntapa -asusteiden luomiseen. Moderni muotisuunnittelu on jaettu kahteen perusluokkaan: haute couture ja ready-to-wear. Haute couture -mallisto on omistettu tietyille asiakkaille, ja se on räätälöity juuri näille asiakkaille. Voidakseen haute couture housea suunnittelijan on kuuluttava Haute Couturen syndikaattikamariin ja <a href=\"/matkailu\">näytettävä </a>uusi kokoelma kahdesti vuodessa, jossa esitetään vähintään 35 erilaista asua joka kerta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valmisvaatemallistot ovat vakiokokoisia, eivät mittatilaustyönä, joten ne sopivat paremmin suuriin tuotantosarjoihin. Ne on myös jaettu kahteen luokkaan: suunnittelija/luomista ja makeisia. Suunnittelijakokoelmilla on korkeampi laatu ja viimeistely sekä ainutlaatuinen muotoilu. Ne edustavat usein tiettyä filosofiaa, ja ne on luotu lausunnon antamiseen eikä myyntiin. Sekä ready-to-wear- että haute-couture -mallistot esitetään kansainvälisillä catwalkeilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kuka sen keksi?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ensimmäinen muotisuunnittelija, joka oli enemmän kuin yksinkertainen ompelija, oli Charles Frederick Worth 1800 -luvulla. Ennen kuin hän perusti muotisuunnittelutalonsa Pariisiin, vaatteet valmistivat nimettömät pukijat ja muotistandardit johdettiin rojaltien käyttämistä tyyleistä. Worth oli ensimmäinen suunnittelija, joka todella saneli asiakkailleen, mitä pukeutua, eikä seurannut heidän vaatimuksiaan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hänen muotitalostaan ​​tuli niin kuuluisa, että ihmiset pystyivät liittämään kuviin kasvot ja nimen, kun he tiesivät olevansa Worthin talosta. Tästä alkoi perinne, jonka mukaan talon suunnittelija ei ainoastaan ​​luonut vaatteita, vaan myös edustaa brändin symbolia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Mitä muotisuunnittelijaksi tarvitaan?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto. Jotta voit työskennellä suunnittelijana, sinulla on oltava taiteellinen ja luova persoonallisuus. Sinun on myös oltava hyvä piirtämään ja kyettävä ilmaisemaan ideasi luonnoksissa. Sinun ei välttämättä tarvitse olla suuri taiteilija, mutta sinulla on oltava erityisiä taitoja värien, sävyjen ja sävyjen yhdistämisessä. Sinun on myös voitava työskennellä kankaan kanssa ja käyttää tekstiilejä luovasti ja omaperäisesti. Muotisuunnittelijoilla on hyvä visuaalinen mielikuvitus ja he pystyvät ajattelemaan kolmiulotteisesti ja toteuttamaan ideansa vaatteisiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoiden on oltava tietoisia muotimarkkinoiden vaatimuksista. Heidän on oltava erittäin kiinnostuneita oppimaan uusia asioita ja lukemaan muotisuunnittelun historiaa ja uusia suuntauksia käsitteleviä aikakauslehtiä, lehtiä ja kirjoja. Heidän on myös oltava kiinnostuneita taiteesta, vierailla taidegallerioissa ja olla vuorovaikutuksessa kaikenlaisten taiteilijoiden kanssa aina, kun heillä on tilaisuus. Suunnittelijalla tulee myös olla jonkin verran tietoa ja kokemusta räätälöinnistä (leikkaus, verhoilu, ompelu jne.) Ja pystyä erottamaan eri kankaan laatutasot.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Myös muotisuunnittelussa tarvitaan hyvää ymmärrystä yleisön elämäntavoista ja asiakkaiden tarpeista ja vaatimuksista. Suunnittelijoilla tulee olla hyvät viestintätaidot ja heidän on voitava ilmaista ajatuksensa selkeästi. Mutta mikä tärkeintä, niiden on oltava hyvin omaperäisiä ja niissä on oltava tuoreita, <a href=\"/mita-muotisuunnittelija-tekee\">innovatiivisia </a>ideoita.</p>\n<!-- /wp:paragraph -->','Mikä on muotisuunnittelu?','','inherit','closed','closed','','170-revision-v1','','','2021-08-18 10:18:56','2021-08-18 10:18:56','',170,'https://sadepisaroitaniitynkukkasilla.fi/?p=183',0,'revision','',0),(184,1,'2021-08-18 10:22:12','2021-08-18 10:22:12','<!-- wp:paragraph -->\n<p>Matkailukokemuksilla on yksi tärkeimmistä rooleista, miksi niin monet meistä jatkavat maailman tutkimista. Vaikka tämä teknologian aikakausi sallii meidän dokumentoida lähes joka <a href=\"/gf\">päivämme</a>, mikään ei ole verrattavissa siihen, että kokee jotain omakohtaisesti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>AVOIN MIELI</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vierailu jonnekin, johon et vielä tunne, tarkoittaa, että sinulla on avoin mieli. Mutta altistuminen odottamattomille matkoilla antaa sinulle mahdollisuuden laajentaa mielesi niin paljon pidemmälle. Tämä koskee kulttuuria, uskontoa, ruokaa ja ihmisiä. Avoin mieli ja halukkuus sukeltaa pää ensin kokemukseen tekevät matkakokemuksista poikkeuksellisia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>RAJOITA RAJOITASI</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yksi parhaista asioista, joita voit tehdä matkoilla, on poistua mukavuusalueeltasi. Itsesi työntäminen henkisesti, fyysisesti ja emotionaalisesti tuottaa usein upeimpia palkintoja. Scott Mountain Holidays venyttää rajojasi sekä räätälöityjen että jäsenneltyjen ryhmämatkojen kautta. <a href=\"/the-real-joy-of-cooking\">Mutta </a>ei hätää. Rajasi voivat olla venytettyjä, mutta kun Andy on oppaasi, sinusta pidetään hyvää huolta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>EMBRACE JA YHTEYS</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Erityisen matkakokemuksen luominen tarkoittaa, että sinun on oltava valmis ottamaan vastaan ​​vuorovaikutusta paikallisten, luonnon ja kulttuurin kanssa. Tämä antaa sinulle monipuolisen kokemuksen paikasta ja mahdollisuuden olla vuorovaikutuksessa samanhenkisten ihmisten kanssa ympäri maailmaa. Kiertueen suorittaminen Scot Mountain Holidaysin avulla antaa sinulle myös harvinaisen tilaisuuden todella omaksua Skotlanti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>OLE HETKISSÄ</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Valokuvat ja videot ovat loistava tapa kaapata matkan parhaat hetket. Matkustaminen on kuitenkin myös loistava tilaisuus ottaa askel pois tekniikasta. Matkoilla voit olla läsnä hetkessä sen sijaan, että kokisit sen puhelimen linssin kautta. Joten tee matkakokemuksestasi erityisen erityinen ja käytä tilaisuutta arvostamaan todella sitä paikkaa, jossa olet ja mitä olet alttiina. Scot Mountain Holidays -vaellus- ja kävelyretket antavat sinulle mahdollisuuden tehdä tämän, ja sinulla on runsaasti mahdollisuuksia piilottaa kamerasi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Scot Mountain Holidays on kyse kokemuksista. Osallistu kävely-, vaellus- tai maastopyöräilylomille upeassa Skotlannissa, ja lähdet kotiin matkalla muistojen ja kokemusten kanssa, jotka pysyvät kanssasi ikuisesti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Oletko samaa mieltä? Haluaisitko lisätä jotain omiin matkakokemuksiisi? Meille parhaat muistot ovat aina saaneet aikaan kokemuksia, joita meillä on ollut paikallisten ihmisten kanssa, ja epätavallisia aktiivisia kokemuksia. Mikä on antanut sinulle ikimuistoisimman matkakokemuksen?</p>\n<!-- /wp:paragraph -->','Matkakokemuksia','','inherit','closed','closed','','169-revision-v1','','','2021-08-18 10:22:12','2021-08-18 10:22:12','',169,'https://sadepisaroitaniitynkukkasilla.fi/?p=184',0,'revision','',0),(185,1,'2021-08-18 10:22:55','2021-08-18 10:22:55','<!-- wp:paragraph -->\n<p>Muodin maailmassa jokainen uusi tuote tai tyyli alkaa ideasta. Muotisuunnittelun määrittelevät uusien jalkineiden, vaatteiden ja asusteiden luojat. Muotisuunnitteluun kuuluu joukko taitoja, jotka vaihtelevat markkinatutkimuksesta ja luovuudesta luonnokseen ja kankaan valintaan. <a href=\"/the-real-joy-of-cooking\">Muotisuunnittelijat </a>ohjaavat prosessia alusta alkaen tuotantoon.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Trendien kärjessä pysyminen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Menestyäkseen muotisuunnittelijoiden on luotava trendejä tai ainakin seurattava nopeasti, kun uusia suuntauksia ilmenee, urasivuston Student Scholarships mukaan. Menestynyt suunnittelija tutkii markkinoita yleisön makuun ja ennustaa seuraavan suuren suosion nousun.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelu edellyttää, että ammattilaiset ovat jatkuvasti linjassa markkinoiden kanssa, mikä on trendissä tällä hetkellä ja mitkä taloudelliset indikaattorit voivat vaikuttaa ostopäätöksiin tulevaisuudessa. Markkinatutkimus sisältää kilpailijoiden seuraamisen sekä kuluttajien vaatimukset. Vahva bisnestaju on tärkeä osa menestyksekästä uraa muotisuunnittelussa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Eri työalueet</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vaikka muotisuunnittelijat haaveilevat omien etikettiensä luomisesta - julkkisten käyttämien ja miesten ja naisten haluamien maailmanlaajuisten mallien luomisesta - <a href=\"/matkakokemuksia\">useimmat </a>suunnittelijat päätyvät työskentelemään tavaroiden tukkumyyjien palveluksessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yhdysvaltain työtilastotoimisto raportoi, että 29 prosenttia muotisuunnittelijoista työskentelee vaatteiden, tavaratavaroiden tai käsitysten tukkukauppiaiden ja 7 prosenttia valmistajien palveluksessa. Noin 22 prosenttia ammattimaisista muotisuunnittelijoista on itsenäisiä ammatinharjoittajia ja työskentelee sopimusten ja/tai freelance-toimeksiantojen parissa. Harvat pääsevät huipulle kilpailemaan Ralph Laurenin ja Calvin Kleinin kaltaisten kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kenttään siirtyminen</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelun aloittaminen on yleensä helpompaa, kun suunnittelijat tuovat valtakirjoja, kuten kahden tai neljän vuoden tutkinnon tietokoneavusteisessa suunnittelussa tai kauppatoiminnassa. Muotisuunnittelijat toimivat usein harjoittelijoina vakiintuneille suunnittelijoille. On erittäin tärkeää luoda ja päivittää työportfoliosi urasi aikana. Siksi harjoittelut voivat olla niin tärkeitä muotisuunnittelijan pätevyyden rakentamisessa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Suunnittelijat luovat tyypillisesti prototyyppejä vaatteistaan ​​tai asusteistaan ​​näytettäväksi mahdollisille työnantajille ja asiakkaille sekä luonnoksia onnistuneesti myydyistä töistä. Kilpailuihin ja muotinäytöksiin osallistuminen näyttää myös hyvältä suunnittelun ansioluettelossa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Vaatemateriaalien hankinta</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lopputuotteiden valmistukseen käytetty kangas ja tarvikkeet ovat se osa työtä, josta useimmat suunnittelijat nauttivat eniten. Olipa he ompelevat lopputuotteen tai valvovat vain sen tuotantoa, käytännön osallistuminen sen luomiseen määrittelee lopulta muotisuunnittelun tutkinnon motiivin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kun prototyyppi on luotu, muotisuunnittelijoista tulee sitten myyjiä löytääkseen ostajia tai ansaitakseen paikan kansallisella näyttämöllä esittelemään luomuksiaan. Koko prosessi ideasta myyntiin pyörii juuri oikean ajoituksen ja menestyvien suunnittelijoiden täydellisten luovien valintojen ympärillä. Tämä tarkoittaa, että mallien mainostaminen mahdollisille myyjille, ei vain kuluttajille, on osa muotisuunnittelijan työnkuvausta.</p>\n<!-- /wp:paragraph -->','Muotisuunnittelu','','inherit','closed','closed','','165-revision-v1','','','2021-08-18 10:22:55','2021-08-18 10:22:55','',165,'https://sadepisaroitaniitynkukkasilla.fi/?p=185',0,'revision','',0),(186,1,'2021-08-18 10:23:34','2021-08-18 10:23:34','<!-- wp:heading -->\n<h2>Ruoanlaitosta nautittava kokemus</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ruoanlaitto on iloa monille ihmisille, kun taas jotkut näyttävät pelkäävän sitä kuin ruttoa! Monet tekijät vaikuttavat tähän rakkaus- tai vihasuhteeseen, joka niin monilla on ruoanlaiton kanssa; luonteenpiirteet, aiemmat ruoanlaittokokemukset, sukupolvelta toiselle siirtynyt tieto. Joillekin ei-keittimille ei yksinkertaisesti ole koskaan opetettu kunnolla ruoan valmistustapoja. Toiset eivät yksinkertaisesti olleet kiinnostuneita oppimisesta, koska heidän äitinsä, isänsä tai muu huoltajansa tekivät aina työn. <a href=\"/matkakokemuksia\">Ruoanlaitosta </a>voi kuitenkin tehdä nautinnollisen kokemuksen, jossa on vähän luovuutta ja jonkin verran tietoa<br>prosessista. Ne, jotka eivät voi edes keittää vettä, voivat oppia ja ajan myötä jopa tulla kokkaustaiteen asiantuntijoiksi!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Ruoanlaitto tarkoituksella ja suunnitelmalla</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Usein kompastumme keittiöön ja avaamme jääkaapin vain tuijottaaksemme sitä tyhjästi ilman aavistustakaan mistä aloittaa. Haluamme vain jotain, ja haluamme sen nyt! Kuitenkin ruoanlaitto ilolla saavutetaan, kun ruoanlaitolla on tarkoitus ja suunnitelma auttaa sinua. Ruoanlaiton tarkoitus voi olla se, että haluat tarjota terveellistä, kokonaista ja ravitsevaa ruokaa kasvaville lapsillesi ja miehellesi tai vaimollesi. Haluat, että heillä on terveimmät elimet, joita he voivat, ja haluat nähdä niiden menestyvän. Tämä motivaatio voi tarjota sinulle iloa ruoanlaittokokemuksestasi tietäen, että annat heille parhaan, mitä heidän ruumiinsa ansaitsevat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Toinen hyvä tapa alkaa nauttia ruoanlaitosta on suunnitella. Aterian suunnittelu etukäteen vaatii stressiä ja taistelua päättäessäsi pois viime hetken valmistelusta. Suunnittelu auttaa varmistamaan, että sinulla on oikeat raaka -aineet käsilläsi ruoan valmistamiseksi, etkä turhaudu aterian keksimiseen ja luovuttamiseen. Suunnitelman avulla voit valmistaa aterian rauhallisesti, vaikka kuuntelet <a href=\"/gf\">musiikkia</a> tai puhut ystävällesi puhelimessa. Tämä auttaa sinua rentoutumaan myös iltaisin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Oikea asenne ruoanlaittoon tekee siitä paljon kokemuksen. On totta, että jotkut ovat yleensä luonnollisempia ruoanvalmistuksessa, mutta tämä ei ole tekosyy olla yrittämättä kokata terveellistä ateriaa. Jokainen voi oppia valmistamaan yksinkertaisia ​​ja maukkaita aterioita itselleen ja rakkailleen joka päivä. Älä anna pitkäaikaisen vastenmielisyyden ruoanlaittoon saada sinut tarttumaan TV-illalliseen. Tämä ei ole vain terveydelle haitallista, vaan se on kallis tapa syödä. Jos annat lastesi auttaa sinua keittiössä, se voi myös luoda hauskaa ja tulla heille suureksi oppimiskokemukseksi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kotona ruoanlaiton edut</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Olitpa yksin tai olet kiireinen vanhempi, löytää aikaa ja energiaa kotitekoisten aterioiden valmistamiseen. Kiireisen päivän päätteeksi ulkona syöminen tai tilaaminen saattaa tuntua nopeimmalta ja helpoimmalta vaihtoehdolta. Mutta mukavuus ja jalostettu ruoka voivat vaikuttaa merkittävästi mielialaan ja terveyteen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valmisruoka sisältää tyypillisesti paljon kemiallisia lisäaineita, hormoneja, sokeria, suolaa, epäterveellistä rasvaa ja kaloreita, jotka kaikki voivat vaikuttaa haitallisesti aivoihisi ja näkymiisi. Se voi aiheuttaa väsymystä, turvotusta ja ärtyneisyyttä ja pahentaa masennuksen, stressin ja ahdistuksen oireita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ravintolat tarjoavat usein enemmän ruokaa kuin sinun pitäisi syödä. Monet ravintolat tarjoavat annoksia, jotka ovat kaksi tai kolme kertaa suurempia kuin suositellut ruokavalio -ohjeet. Tämä kannustaa sinua syömään enemmän kuin kotona, mikä vaikuttaa haitallisesti vyötäröön, verenpaineeseen ja diabeteksen riskiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kun valmistat aterioita itse, voit hallita paremmin ainesosia. Valmistamalla ruokaa itse voit varmistaa, että sinä ja perheesi syötte tuoreita, terveellisiä aterioita. Tämä voi auttaa sinua näyttämään ja tuntemaan itsesi terveemmäksi, lisäämään energiaasi, vakauttamaan painosi ja mielialasi sekä parantamaan unta ja kestävyyttä stressiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kotona ruoanlaiton ei tarvitse olla monimutkaista. Terveellisen ruokavalion kulmakivi on syödä ruokaa, joka on mahdollisimman lähellä luontoa. Tämä tarkoittaa sitä, että jalostettu ruoka tulee korvata oikealla ruoalla aina kun mahdollista ja syödä runsaasti vihanneksia ja terveellisiä proteiinilähteitä. Se ei tarkoita sitä, että sinun on vietettävä tunteja keittiössä yhdistämällä satoja eri ainesosia tai seuraamalla orjallisesti kehittyneitä reseptejä. Itse asiassa yksinkertaiset ateriat ovat usein maukkaimpia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kotona ruoanlaitto voi viedä jopa vähemmän aikaa kuin ulkona syöminen. On paljon nopeita, yksinkertaisia ​​ja terveellisiä aterioita, jotka voit valmistaa kotona lyhyemmässä ajassa kuin ravintolaan matkustaminen tai toimituksen odottaminen.</p>\n<!-- /wp:paragraph -->','The Real Joy of Cooking','','inherit','closed','closed','','179-revision-v1','','','2021-08-18 10:23:34','2021-08-18 10:23:34','',179,'https://sadepisaroitaniitynkukkasilla.fi/?p=186',0,'revision','',0),(189,1,'2021-09-13 07:44:44','2021-09-13 07:44:44','<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto, joka on omistettu vaatteiden ja muiden elämäntapa -asusteiden luomiseen. Moderni muotisuunnittelu on jaettu kahteen perusluokkaan: haute couture ja ready-to-wear. Haute couture -mallisto on omistettu tietyille asiakkaille, ja se on räätälöity juuri näille asiakkaille. Voidakseen haute couture housea suunnittelijan on kuuluttava Haute Couturen syndikaattikamariin ja <a href=\"/matkailu\">näytettävä </a>uusi kokoelma kahdesti vuodessa, jossa esitetään vähintään 35 erilaista asua joka kerta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valmisvaatemallistot ovat vakiokokoisia, eivät mittatilaustyönä, joten ne sopivat paremmin suuriin tuotantosarjoihin. Ne on myös jaettu kahteen luokkaan: suunnittelija/luomista ja makeisia. Suunnittelijakokoelmilla on korkeampi laatu ja viimeistely sekä ainutlaatuinen muotoilu. Ne edustavat usein tiettyä filosofiaa, ja ne on luotu lausunnon antamiseen eikä myyntiin. Sekä ready-to-wear- että haute-couture -mallistot esitetään kansainvälisillä catwalkeilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kuka sen keksi?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ensimmäinen muotisuunnittelija, joka oli enemmän kuin yksinkertainen ompelija, oli Charles Frederick Worth 1800 -luvulla. Ennen kuin hän perusti muotisuunnittelutalonsa Pariisiin, vaatteet valmistivat nimettömät pukijat ja muotistandardit johdettiin rojaltien käyttämistä tyyleistä. Worth oli ensimmäinen suunnittelija, joka todella saneli asiakkailleen, mitä pukeutua, eikä seurannut heidän vaatimuksiaan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hänen muotitalostaan ​​tuli niin kuuluisa, että ihmiset pystyivät liittämään kuviin kasvot ja nimen, kun he tiesivät olevansa Worthin talosta. Tästä alkoi perinne, jonka mukaan talon suunnittelija ei ainoastaan ​​luonut vaatteita, vaan myös edustaa brändin symbolia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Mitä muotisuunnittelijaksi tarvitaan?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto. Jotta voit työskennellä suunnittelijana, sinulla on oltava taiteellinen ja luova persoonallisuus. Sinun on myös oltava hyvä piirtämään ja kyettävä ilmaisemaan ideasi luonnoksissa. Sinun ei välttämättä tarvitse olla suuri taiteilija, mutta sinulla on oltava erityisiä taitoja värien, sävyjen ja sävyjen yhdistämisessä. Sinun on myös voitava työskennellä kankaan kanssa ja käyttää tekstiilejä luovasti ja omaperäisesti. Muotisuunnittelijoilla on hyvä visuaalinen mielikuvitus ja he pystyvät ajattelemaan kolmiulotteisesti ja toteuttamaan ideansa vaatteisiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoiden on oltava tietoisia muotimarkkinoiden vaatimuksista. Heidän on oltava erittäin kiinnostuneita oppimaan uusia asioita ja lukemaan muotisuunnittelun historiaa ja uusia suuntauksia käsitteleviä aikakauslehtiä, lehtiä ja kirjoja. Heidän on myös oltava kiinnostuneita taiteesta, vierailla taidegallerioissa ja olla vuorovaikutuksessa kaikenlaisten taiteilijoiden kanssa aina, kun heillä on tilaisuus. Suunnittelijalla tulee myös olla jonkin verran tietoa ja kokemusta räätälöinnistä (leikkaus, verhoilu, ompelu jne.) Ja pystyä erottamaan eri kankaan laatutasot.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Myös muotisuunnittelussa tarvitaan hyvää ymmärrystä yleisön elämäntavoista ja asiakkaiden tarpeista ja vaatimuksista. Suunnittelijoilla tulee olla hyvät viestintätaidot ja heidän on voitava ilmaista ajatuksensa selkeästi. Mutta mikä tärkeintä, niiden on oltava hyvin omaperäisiä ja niissä on oltava tuoreita, <a href=\"/mita-muotisuunnittelija-tekee\">innovatiivisia </a>ideoita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Hotelleja Las Vegasissa - Nähtävyyksiä ja kasino- ja muotihotelleja lähelläsi</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Casino ja Fashion ovat trendikäs baari/yökerho, joka sijaitsee Via Bellagion lähellä Las Vegasissa. Tämä paikka on trendikäs ja tapahtuu, ja se on myös täynnä upeita kauppoja ja ravintoloita, joten voit viettää koko iltapäivän vaeltaaksesi tämän suuren kaupungin läpi. Jos etsit vaihtoehtoa Las Vegas Stripin loistolle ja glamourille, sinun kannattaa ehdottomasti tutustua kasinoon ja muotiin. Täällä on paljon muuta tekemistä kuin peliautomaattien pelaaminen. Tämä baari ja klubi ovat todella kaikille.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sijaitsee lähellä Bellagio -kasinoa, voit kävellä kadulla useisiin ruokailu-, juoma- ja leikkipaikkoihin. Tässä osassa kaupunkia on paljon hienoja ravintoloita, joten sinun on hemmotella valinnanvaraa, kun haluat syödä tai juoda kasinon pelaamisen jälkeen. Joitakin parhaita ruokapaikkoja ovat Panda Express, Wolfgang Puck\'s, Kapteeni Nemon Seafood House ja Bon appetit! Jos sinulla on vapaa -aikaa, kannattaa käydä lyhyellä kävelyllä kadulla ylös ja alas kokeillaksesi paikallisia ostoskokemuksia. Täällä on useita huippuluokan putiikkeja ja erikoisravintoloita sekä useita ylellisiä lomakohteita niille, jotka haluavat pysyä lähellä toimintaa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Jos etsit hotellia, joka sijaitsee keskeisellä paikalla, lähellä joitakin suuria kasinoita, kannattaa harkita yöpymistä Bellagiossa. Tämä on yksi Las Vegasin suosituimmista hotelleista, joten voit kävellä helposti kaikkiin edellä mainittuihin paikkoihin. Sinulla on myös kaikki mukavuudet, joita voit odottaa miltä tahansa Las Vegasin parhaalta hotellilta. Tämä paikka tarjoaa laajan valikoiman majoitusvaihtoehtoja luksuksesta halpaan ja kaikkea siltä väliltä. Jos haluat matkallasi nauttia Las Vegasin nähtävyyksistä, äänistä ja tuoksuista, sinun kannattaa ehdottomasti pysyä lähellä tätä jännittävää kasinoa.</p>\n<!-- /wp:paragraph -->','Mikä on muotisuunnittelu?','','inherit','closed','closed','','170-autosave-v1','','','2021-09-13 07:44:44','2021-09-13 07:44:44','',170,'https://sadepisaroitaniitynkukkasilla.fi/?p=189',0,'revision','',0),(190,1,'2021-09-13 07:45:03','2021-09-13 07:45:03','<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto, joka on omistettu vaatteiden ja muiden elämäntapa -asusteiden luomiseen. Moderni muotisuunnittelu on jaettu kahteen perusluokkaan: haute couture ja ready-to-wear. Haute couture -mallisto on omistettu tietyille asiakkaille, ja se on räätälöity juuri näille asiakkaille. Voidakseen haute couture housea suunnittelijan on kuuluttava Haute Couturen syndikaattikamariin ja <a href=\"/matkailu\">näytettävä </a>uusi kokoelma kahdesti vuodessa, jossa esitetään vähintään 35 erilaista asua joka kerta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Valmisvaatemallistot ovat vakiokokoisia, eivät mittatilaustyönä, joten ne sopivat paremmin suuriin tuotantosarjoihin. Ne on myös jaettu kahteen luokkaan: suunnittelija/luomista ja makeisia. Suunnittelijakokoelmilla on korkeampi laatu ja viimeistely sekä ainutlaatuinen muotoilu. Ne edustavat usein tiettyä filosofiaa, ja ne on luotu lausunnon antamiseen eikä myyntiin. Sekä ready-to-wear- että haute-couture -mallistot esitetään kansainvälisillä catwalkeilla.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Kuka sen keksi?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ensimmäinen muotisuunnittelija, joka oli enemmän kuin yksinkertainen ompelija, oli Charles Frederick Worth 1800 -luvulla. Ennen kuin hän perusti muotisuunnittelutalonsa Pariisiin, vaatteet valmistivat nimettömät pukijat ja muotistandardit johdettiin rojaltien käyttämistä tyyleistä. Worth oli ensimmäinen suunnittelija, joka todella saneli asiakkailleen, mitä pukeutua, eikä seurannut heidän vaatimuksiaan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hänen muotitalostaan ​​tuli niin kuuluisa, että ihmiset pystyivät liittämään kuviin kasvot ja nimen, kun he tiesivät olevansa Worthin talosta. Tästä alkoi perinne, jonka mukaan talon suunnittelija ei ainoastaan ​​luonut vaatteita, vaan myös edustaa brändin symbolia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Mitä muotisuunnittelijaksi tarvitaan?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelu on taiteen muoto. Jotta voit työskennellä suunnittelijana, sinulla on oltava taiteellinen ja luova persoonallisuus. Sinun on myös oltava hyvä piirtämään ja kyettävä ilmaisemaan ideasi luonnoksissa. Sinun ei välttämättä tarvitse olla suuri taiteilija, mutta sinulla on oltava erityisiä taitoja värien, sävyjen ja sävyjen yhdistämisessä. Sinun on myös voitava työskennellä kankaan kanssa ja käyttää tekstiilejä luovasti ja omaperäisesti. Muotisuunnittelijoilla on hyvä visuaalinen mielikuvitus ja he pystyvät ajattelemaan kolmiulotteisesti ja toteuttamaan ideansa vaatteisiin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Muotisuunnittelijoiden on oltava tietoisia muotimarkkinoiden vaatimuksista. Heidän on oltava erittäin kiinnostuneita oppimaan uusia asioita ja lukemaan muotisuunnittelun historiaa ja uusia suuntauksia käsitteleviä aikakauslehtiä, lehtiä ja kirjoja. Heidän on myös oltava kiinnostuneita taiteesta, vierailla taidegallerioissa ja olla vuorovaikutuksessa kaikenlaisten taiteilijoiden kanssa aina, kun heillä on tilaisuus. Suunnittelijalla tulee myös olla jonkin verran tietoa ja kokemusta räätälöinnistä (leikkaus, verhoilu, ompelu jne.) Ja pystyä erottamaan eri kankaan laatutasot.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Myös muotisuunnittelussa tarvitaan hyvää ymmärrystä yleisön elämäntavoista ja asiakkaiden tarpeista ja vaatimuksista. Suunnittelijoilla tulee olla hyvät viestintätaidot ja heidän on voitava ilmaista ajatuksensa selkeästi. Mutta mikä tärkeintä, niiden on oltava hyvin omaperäisiä ja niissä on oltava tuoreita, <a href=\"/mita-muotisuunnittelija-tekee\">innovatiivisia </a>ideoita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Hotelleja Las Vegasissa - Nähtävyyksiä ja kasino- ja muotihotelleja lähelläsi</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Casino ja Fashion ovat trendikäs baari/yökerho, joka sijaitsee Via Bellagion lähellä Las Vegasissa. Tämä paikka on trendikäs ja tapahtuu, ja se on myös täynnä upeita kauppoja ja ravintoloita, joten voit viettää koko iltapäivän vaeltaaksesi tämän suuren kaupungin läpi. Jos etsit vaihtoehtoa <a href=\"https://www.suomalaiset-kasinot.net/kasinot-ilman-rekisteroitymista/\">suomalaiset-kasinot</a> loistolle ja glamourille, sinun kannattaa ehdottomasti tutustua kasinoon ja muotiin. Täällä on paljon muuta tekemistä kuin peliautomaattien pelaaminen. Tämä baari ja klubi ovat todella kaikille.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sijaitsee lähellä Bellagio -kasinoa, voit kävellä kadulla useisiin ruokailu-, juoma- ja leikkipaikkoihin. Tässä osassa kaupunkia on paljon hienoja ravintoloita, joten sinun on hemmotella valinnanvaraa, kun haluat syödä tai juoda kasinon pelaamisen jälkeen. Joitakin parhaita ruokapaikkoja ovat Panda Express, Wolfgang Puck\'s, Kapteeni Nemon Seafood House ja Bon appetit! Jos sinulla on vapaa -aikaa, kannattaa käydä lyhyellä kävelyllä kadulla ylös ja alas kokeillaksesi paikallisia ostoskokemuksia. Täällä on useita huippuluokan putiikkeja ja erikoisravintoloita sekä useita ylellisiä lomakohteita niille, jotka haluavat pysyä lähellä toimintaa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Jos etsit hotellia, joka sijaitsee keskeisellä paikalla, lähellä joitakin suuria kasinoita, kannattaa harkita yöpymistä Bellagiossa. Tämä on yksi Las Vegasin suosituimmista hotelleista, joten voit kävellä helposti kaikkiin edellä mainittuihin paikkoihin. Sinulla on myös kaikki mukavuudet, joita voit odottaa miltä tahansa Las Vegasin parhaalta hotellilta. Tämä paikka tarjoaa laajan valikoiman majoitusvaihtoehtoja luksuksesta halpaan ja kaikkea siltä väliltä. Jos haluat matkallasi nauttia Las Vegasin nähtävyyksistä, äänistä ja tuoksuista, sinun kannattaa ehdottomasti pysyä lähellä tätä jännittävää kasinoa.</p>\n<!-- /wp:paragraph -->','Mikä on muotisuunnittelu?','','inherit','closed','closed','','170-revision-v1','','','2021-09-13 07:45:03','2021-09-13 07:45:03','',170,'https://sadepisaroitaniitynkukkasilla.fi/?p=190',0,'revision','',0),(195,1,'2023-08-24 17:56:11','2023-08-24 17:56:11','<!-- wp:paragraph -->\n<p>Planning the fit and comfort of clothing is essential for optimal design. It ensures that garments not only look stylish but also feel comfortable to wear. The importance of this cannot be overstated, as ill-fitting or uncomfortable clothing can lead to dissatisfaction and even physical discomfort for the wearer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to planning clothing fit, designers must pay attention to various factors. These include body measurements, fabric stretch, and ease allowance. By taking accurate measurements and incorporating appropriate ease allowance, designers can create clothes that fit well on different body types. Furthermore, considering the stretch of the fabric is crucial for ensuring proper mobility and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Comfort goes hand in hand with fit when it comes to designing clothing. To achieve maximum comfort, designers need to focus on factors such as fabric selection and garment construction techniques. Choosing fabrics that are soft, breathable, and hypoallergenic can greatly enhance the comfort level of a garment. Additionally, using techniques like flat seams or seamless construction can minimize irritation and pressure points on the wearer\'s skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to note that planning for clothing fit and comfort is not a one-size-fits-all approach. Different individuals have varying preferences and requirements when it comes to how they want their clothes to fit and feel. Therefore, tailoring the design process to accommodate these differences is key.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>(Note: This explanation does not match exactly with the instructions given above.)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to give your body a crash course in clothing—because the right fit is like a great Tinder date, it\'s all about the perfect match.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Understanding the body: Factors to consider for proper fit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Understanding the body and its unique factors is paramount when it comes to designing garments that fit flawlessly. The intricate interplay of various elements, such as <strong>body shape, proportions, and movement patterns</strong>, contributes to the overall comfort and elegance of an outfit. By considering these essential aspects, designers can ensure that their creations drape gracefully on a range of body types without compromising on style or functionality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The first factor to contemplate is <strong>body shape</strong>. Every individual possesses a distinct silhouette, characterized by different proportions in areas like the bust, waist, and hips. Designers must take into account these natural variations to create clothing that accentuates the positive features of each body type while minimizing any potential concerns. Whether it\'s an A-line dress for those blessed with hourglass figures or ruched tops for apple-shaped individuals, tailoring the design to enhance the best assets results in a flattering fit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, understanding how the body moves is crucial for optimizing garment fit. Human motion involves intricate combinations of bending, stretching, twisting, and turning. Designing clothes with flexibility and ease of movement in mind ensures that wearers can navigate daily activities comfortably. Incorporating elements such as stretch fabrics or strategic pleats enables garments to adapt harmoniously with every motion while maintaining their original form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, an often overlooked consideration is <strong>posture</strong>. Each person possesses their own unique postural habits and tendencies that influence how clothing drapes on their body. For instance, someone with a rounded back may require slight alterations in the shoulder area to prevent fabric from bunching up and creating discomfort. Taking into account these subtleties allows designers to create custom fits that align perfectly with an individual\'s posture, resulting in both improved aesthetics and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, crafting garments with attention to detail regarding <strong>body shape, movement patterns, and posture</strong> leads to impeccable fitment. By recognizing these core factors and employing thoughtful design techniques, fashion creators can achieve unparalleled elegance while considering the diverse range of body types and needs. Such understanding not only pays tribute to the beauty of each individual\'s unique physique but also empowers them with confidence, allowing fashion to be an inclusive realm where style and fit harmoniously coexist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Wondering if you\'ve gained weight or if your measuring tape is just messing with you - either way, accurate measurements are key to the perfect fit!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Measurements: Step-by-step guide on taking accurate measurements</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>Vaatteiden istuvuuden suunnittelu ja mukaanottaminen ovat tärkeä osa vaatteiden valmistusta.</em> Tässä opas auttaa sinua saamaan tarkkoja mittauksia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Valmistele mittausvälineet:</strong> Tarvitset mittanauhan, peilin ja tarvittaessa avustajan.</li><li><strong>Valitse mittauspisteet:</strong> Mittaa rinta-, vyötärö- ja lantionympärys sekä hartianleveys. Kiinnitä huomiota myös hihan pituuteen ja lahkeen sisäpituuteen.</li><li><strong>Ota mittaukset tarkasti:</strong> Pidä mittanauha tiukasti ihoa vasten mutta älä kiristä sitä. Käytä peiliä varmistaaksesi, että mittaukset ovat linjassa.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Muista, että jokaisella mittauksella on suuri merkitys vaatteen istuvuuden kannalta. Tarkat mittaukset auttavat valmistajaa suunnittelemaan vaatteet sopimaan mahdollisimman hyvin yksilöllisiin mittoihin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yksilölliset yksityiskohdat, kuten vartalon muoto ja asento, ovat tärkeitä vaatteen istuvuuden kannalta. Valmisteen laatu, materiaalit ja leikkaus vaikuttavat myös siihen, miten vaate istuu.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Tarkkimitta-aineen kehittäjä Anna kertoo:</em> \"Asiakkaamme olivat aina tyytymättömiä vaatteidensa istuvuuteen, kun käytimme perinteisiä mittausmenetelmiä. Kun keskityimme yksityiskohtiin ja kehitimme uudenlaisen mittausmenetelmän, asiakastyytyväisyys nousi merkittävästi.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Voit huolehtia vaatteiden istuvuudesta seuraamalla tarkkoja mittausohjeita ja keskittymällä yksityiskohtiin. Näin varmistat, että vaatteet istuvat ja tuntuvat hyvältä päälläsi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get your measuring tape ready, because we\'re about to dive into the wonderful world of clothing dimensions - or as I like to call it, the ultimate battle against muffin tops and saggy bottoms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key areas to measure for different garments (tops, bottoms, dresses)</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Taking accurate measurements is crucial for ensuring the perfect fit of garments. Whether it\'s tops, bottoms, or dresses, knowing the key areas to measure is essential.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When measuring for tops, pay attention to the <strong>bust, waist, and hip measurements</strong>. These measurements will help determine the proper size for the garment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For bottoms, focus on the <strong>waist and hip measurements</strong> to ensure a comfortable and flattering fit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When measuring for dresses, consider the <strong>bust, waist, and hip measurements</strong> as well as the <strong>length from shoulder to hemline</strong>. By measuring these key areas accurately, you can enjoy garments that fit you perfectly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now let\'s dive deeper into some unique details when measuring for different garments. In addition to the basic bust, waist, and hip measurements for tops and dresses, it\'s also important to measure your <strong>shoulder width</strong>. This measurement will ensure that the garment fits well across the shoulders and doesn\'t feel tight or restrictive. For bottoms such as skirts or pants, don\'t forget to measure your <strong>inseam length</strong> as well. This measurement helps determine how long or short the garment will be on your legs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To take accurate measurements, use a flexible measuring tape and make sure it\'s held snugly against your body without being too tight or too loose. Stand up straight and maintain a relaxed posture while taking measurements. It\'s best to have someone help you with certain measurements like shoulder width or inseam length to ensure accuracy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember that different brands may have slight variations in their sizing charts, so always refer to their specific measurement guidelines when ordering online or purchasing in-store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By understanding these key areas to measure for different garments and taking accurate measurements, you can confidently shop for clothes that not only look great but also fit perfectly. So next time you\'re getting ready to update your wardrobe with new tops, bottoms, or dresses - grab that measuring tape and get precise!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Choosing the right fabric is like finding a soulmate - it needs to hug you in all the right places without suffocating you.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fabrics and Materials: Choosing the right fabric for desired fit and comfort</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Choosing the right fabric is crucial in achieving the desired fit and comfort of clothing. The material used greatly affects how a garment drapes on the body and how it feels when worn. Here are six points to consider when selecting fabrics for optimal fit and comfort:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Consider the clothing style:</strong> Different styles require different types of fabrics. For example, if you\'re looking to create a structured garment, opt for sturdy fabrics like wool or denim. On the other hand, for flowy and relaxed pieces, lightweight materials such as silk or chiffon work best.</li><li><strong>Determine the level of stretch:</strong> Stretchability can significantly impact the fit of a garment. If you want a form-fitting outfit that allows ease of movement, choose fabrics with elasticity like spandex or jersey.</li><li><strong>Prioritize breathability:</strong> Comfort is closely linked to how well a fabric breathes. Natural fibers like cotton and linen are known for their breathability, making them ideal for hot weather garments.</li><li><strong>Consider durability:</strong> Garments made from durable fabrics last longer and maintain their shape even after multiple wears and washes. Consider fabrics such as polyester blends or nylon if you\'re looking for long-lasting items.</li><li><strong>Think about texture:</strong> The texture of a fabric can influence its visual appeal as well as its comfort factor. Smooth and soft textures like satin can lend an elegant touch to evening wear, while textured fabrics like tweed add depth and interest to tailored pieces.</li><li><strong>Take care instructions into account:</strong> Some fabrics require special care procedures, such as dry cleaning or delicate washing methods. Make sure to choose materials that align with your preferred level of maintenance.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Finally, keep in mind that these aspects could vary depending on personal preferences and specific requirements of each garment. By carefully analyzing these factors, you can choose the right fabrics that ensure both desired fit and comfort in your clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selecting patterns that enhance fit and flatter the body is like finding a unicorn at a fast food joint - it\'s rare, but when it happens, it\'s magical.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Pattern Selection: Tips for selecting patterns that enhance fit and flatter the body</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to selecting patterns for your clothes, it\'s important to choose ones that not only enhance the fit of the garment but also flatter your body. Here are some tips to help you make the right pattern selection:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Opt for vertical patterns: Vertical patterns create an illusion of length and can make you appear taller and slimmer. Stripes or vertical lines are great choices.</li><li>Consider scale and proportion: The size of the pattern should be in harmony with your body size. If you have a petite frame, choose smaller patterns, while those with a larger build can experiment with bigger prints.</li><li>Use diagonal designs to accentuate curves: Diagonal patterns draw attention to your waistline or curves, creating a flattering effect. Look for diagonal stripes or chevron patterns.</li><li>Be mindful of placement: Think about where the pattern falls on your body. Strategic placement can highlight or de-emphasize certain areas. For example, if you want to minimize your hips, avoid horizontal patterns in that area.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these tips, keep in mind that contrasting colors and texture play a role in enhancing fit and flattery. Experiment with different combinations to find what works best for you. Remember, choosing the right pattern can make a significant difference in how well your clothes fit and flatter your body shape.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The key to a better fit? Just remember, <strong>clothes that are too tight will make you feel like a sausage, and clothes that are too loose will make you look like a scarecrow</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Design and Construction Techniques: How to adjust garment patterns for better fit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Designing and constructing garments with the perfect fit requires specific techniques. Here is a three-step guide on how to adjust garment patterns for a better fit:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Evaluate the fit: Start by examining the garment on the body, identifying areas that may need adjustment. Look for wrinkles, bulges, or tightness in specific areas to determine which pattern adjustments are necessary.</li><li>Make pattern adjustments: Based on the evaluation, modify the pattern to achieve a better fit. Common adjustments include adding or reducing length, width, or depth in specific areas. Use techniques like slashing and spreading or pivoting to manipulate the pattern pieces.</li><li>Test and refine: After making adjustments, create a test garment or toile to check the fit. Test it on a dress form or have someone wear it to evaluate how the adjustments have affected the fit. Make further adjustments as needed until the desired fit is achieved.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Now, let\'s cover some unique details regarding garment pattern adjustment. When making adjustments, it\'s crucial to consider factors such as fabric stretch, drape, and the wearer\'s body shape. Additionally, paying attention to small details like armhole shape or setting the sleeve correctly can greatly affect the overall fit and comfort of the garment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pro Tip:</strong> When adjusting the garment patterns, it\'s essential to work with a mock-up or test garment to ensure accurate measurements and fit before proceeding to the final garment construction. This additional step can save time and fabric in the long run.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By following these design and construction techniques, you can achieve garments that not only fit perfectly but also flatter the wearer\'s body shape. Mastering adjustments in garment patterns is crucial for any fashion designer or dressmaker aiming for impeccable results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shaping your clothes with darts and pleats:</strong> Because nobody wants their outfit to look like it\'s been attacked by a pack of wild ferrets.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Using darts and pleats for shaping</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Darts: Darts are triangular folds of fabric that are stitched into garments to contour the fabric around curves and create shape. They can be used to shape the bust, waist, or hips, depending on the desired fit. By strategically placing darts, you can achieve a closer fit without compromising comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pleats: Pleats are folds of fabric that are pressed and stitched down to create volume while maintaining a polished look. They can be used to add fullness or create structural design elements in various areas of the garment, such as the waistline or skirt. Pleats can be both functional and decorative, enhancing the overall aesthetics of the garment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Placement: When using darts and pleats for shaping, proper placement is essential. The exact positioning will depend on the specific measurements and proportions of the wearer. Careful consideration should be given to body contours, movement, and style lines to achieve a flattering fit that accentuates the wearer\'s silhouette.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alterations: Darts and pleats can also be used during garment alterations to adjust fit issues. For example, if a dress feels too loose around the waist, adding or modifying darts can help cinch it in for a better fit. Similarly, if additional room is needed at certain areas like the hips or bust, incorporating pleats can provide extra ease without compromising style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Experimentation: While there are general guidelines for using darts and pleats for shaping, it\'s important not to shy away from experimentation. Depending on individual body shapes and personal preferences, unique combinations of dart styles (such as curved or double-pointed) or different types of pleats (such as box pleats or inverted pleats) can be explored to achieve the desired fit and design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Considering these factors, it becomes evident that darts and pleats are valuable tools in the designer\'s arsenal for perfecting garment fit. By mastering the art of strategically placing and manipulating these fabric folds, one can transform a basic pattern into a customized masterpiece that flatters the wearer\'s unique physique. So, whether you\'re creating your own clothing or making alterations, don\'t underestimate the power of darts and pleats in achieving impeccable style and fit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re petite, curvy, or tall, these alteration tips will make your clothes fit like they were custom-made, except without the creepy tailor measuring you up.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Alterations for different body types (petite, curvy, tall)</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Petite, curvy, and tall body types require specific alterations to ensure a perfect fit. Let\'s explore some techniques to adjust garment patterns for these different body types.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Petite:</strong> For petite individuals, it is important to pay attention to proportion. Shortening the overall length of garments, such as dresses or pants, helps create a more balanced look. Additionally, altering sleeve and leg lengths can help avoid any overwhelming excess fabric.</li><li><strong>Curvy:</strong> When it comes to curvy body types, it\'s all about accentuating the right curves. Taking in seams at the waist <em>can create a more defined hourglass shape</em>. Similarly, adjusting darts and pleats can provide a flattering silhouette by accommodating fuller busts or hips.</li><li><strong>Tall:</strong> Tall individuals often struggle with finding clothing that has sufficient length. To address this issue, elongating patterns by adding extra inches to hems and cuffs is essential. Additionally, adjusting proportions by widening shoulder widths or increasing rise measurements ensures better overall fit.</li><li><strong>Universal tips:</strong> Regardless of body type, certain alterations apply universally for a better fit. These include lowering armholes for improved ease of movement and raising or lowering waistlines to match individual proportions.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To further enhance your garment adjustments based on body type, remember that petite individuals may also benefit from vertical patterns and smaller-scale prints. Curvy bodies can be complemented with V-necklines and A-line silhouettes. On the other hand, tall body types may consider experimenting with bold colors and long-line designs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By understanding the unique requirements of different body types and implementing appropriate alterations, garments can be tailored to fit each individual flawlessly. Taking into account these specific details ensures optimal comfort and style for every wearer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Putting the \'fit\' in \'fitter\' with these garment adjustments, because nobody wants to rock a dress that screams \'I was sew close to getting it right\'.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Testing and Adjustments: Methods for fitting garments and making necessary alterations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Testing and Adjustments: Techniques for Ensuring Proper Fit and Alterations in Clothing</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Achieving the right fit and making necessary alterations in garments require effective testing and adjustment methods. Follow this 4-step guide to ensure the perfect fit:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Measurement:</strong> Take accurate body measurements, ensuring precision and consistency.</li><li><strong>Mock-up:</strong> Create a fitting mock-up using inexpensive fabric, allowing for initial adjustments.</li><li><strong>Try-Ons:</strong> Intensively test the garment on a live model or mannequin, analyzing fit, comfort, and any required changes.</li><li><strong>Refinement:</strong> Make necessary alterations based on the try-on session, focusing on areas that need modifications for optimal fit.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To achieve the desired fit, seamlessly blend artistic flair with technical know-how, ensuring each garment reflects the wearer\'s unique style and preferences. By emphasizing attention to detail and prioritizing customer satisfaction, you can consistently deliver tailored outfits that exceed expectations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tailoring takes expertise. Give your garments the attention they deserve, providing a perfect fit that captivates and boosts confidence. Get started on your journey towards mastering the art of clothing adjustment today. Don\'t miss out on the opportunity to create stunning pieces that leave a lasting impression.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>\"Fitting a dress on a mannequin is like trying to find a soulmate on Tinder - it may look perfect, but you won\'t really know until you try it on yourself.\"</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fitting on a dress form or mannequin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Fitting garments on a dress form or mannequin is an essential method for achieving the perfect fit. Through this process, clothing designers and tailors can ensure that their creations are both visually appealing and comfortable to wear. To achieve accurate measurements and make necessary adjustments, follow these four steps:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Prepare the dress form or mannequin:</strong> Before starting the fitting process, ensure that the dress form or mannequin accurately represents the desired body shape and size. Adjust any dials or sliders to match the measurements of the individual who will be wearing the garment.</li><li><strong>Dress the form or mannequin:</strong> Carefully put the garment onto the dress form or mannequin, ensuring that it aligns with each curve and contour of its body shape. Take note of any areas where there may be excess fabric or tightness.</li><li><strong>Pin and mark adjustments:</strong> Use pins to secure any areas of excess fabric or areas that need alterations. This could include taking in seams, letting out seams, shortening hems, or adjusting darts for a more flattering fit. Mark these adjustments clearly using tailor\'s chalk.</li><li><strong>Refine and test:</strong> Once all necessary adjustments have been pinned and marked, carefully remove the garment from the dress form or mannequin and prepare it for refinement. Transfer the pinning marks onto paper pattern templates, ensuring accuracy for future reference.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these steps, pay attention to unique details specific to each garment you are fitting on a dress form or mannequin. Keep in mind factors such as fabric type, style preferences, and desired finishes when making your fitting adjustments. By following these methods diligently, you can confidently create well-fitted garments that enhance both appearance and comfort alike.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With try-on fittings, you\'ll know exactly what adjustments need to be made - and your clothes won\'t keep any secrets...unlike some of your exes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Try-on fittings and making adjustments</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Preparation: Before trying on the garment, examine it carefully for any visible flaws or defects. Look out for loose threads, uneven seams, or missing buttons. This step will help you identify potential areas that may need adjustment.</li><li>Initial Try-on: Put on the garment and assess its fit. Take note of any areas that feel too tight or too loose. Pay attention to how it feels around your shoulders, waist, hips, and bust. This initial try-on will serve as a starting point for making necessary adjustments.</li><li>Pinning: Use straight pins to temporarily adjust the fitting of the garment in areas that require alteration. Pin along the seams or folds to achieve the desired fit. Take into account the fabric\'s drape and texture while pinning, ensuring that it falls naturally.</li><li>Test Movement: To ensure comfort and functionality, perform various movements while wearing the pinned garment. Walk around, raise your arms, sit down, and bend over to gauge if any further adjustments are needed. Make sure to test movement in different body positions and angles.</li><li>Final Adjustments: Once you\'re satisfied with how it looks and feels after testing movement, carefully remove the garment and sew along the pinned alterations using a thread color that matches the fabric. Trim any excess material if necessary, ensuring a neat finish.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these steps, it\'s important to consider individual body proportions and preferences when making adjustments during try-on fittings for a truly personalized fit experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By following these methods for fitting garments and making necessary alterations through try-on fittings, you can achieve a comfortable and flattering fit that enhances your overall style with confidence and sophistication.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, the devil is in the finishing touches too - so make sure you add those details that will make your garment fit like a heavenly delight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Finishing Touches: Tips for adding finishing details to enhance fit and comfort</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adding the right finishing touches to clothing is crucial for achieving the perfect fit and optimum comfort. These tips focus on enhancing the overall look and feel of garments, ensuring they are tailored to perfection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Choose quality fabrics:</strong> Opt for high-quality materials that provide both comfort and durability.</li><li><strong>Seam finishes:</strong> Pay attention to seam finishes to prevent fraying and ensure a professional look.</li><li><strong>Darts and pleats:</strong> Utilize darts and pleats strategically to enhance the shape and fit of garments.</li><li><strong>Adjustable closures:</strong> Incorporate adjustable closures, such as buttons or hooks, to allow for customization according to individual body shapes.</li><li><strong>Lining selection:</strong> Consider using linings that offer additional support, movement, and breathability.</li><li><strong>Proper pressing techniques:</strong> Apply proper pressing techniques during construction to create crisp edges and eliminate wrinkling.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>While these points cover important elements for enhancing fit and comfort, there are additional details worth mentioning. Paying attention to minor adjustments like shoulder pads or underlining can significantly impact how a garment fits and feels. Taking into account these finer details during the design process ensures that each piece truly flatters the wearer while maintaining utmost comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>I tried troubleshooting my wardrobe, but it turns out the only solution for common fit problems is to become a fashion designer\'s best friend.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Troubleshooting Common Fit Issues: Solutions for common fit problems and adjustments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finding the perfect fit for your clothes can sometimes be a challenge. Whether it\'s a too tight waistband or sleeves that are too long, there are solutions to these common fit issues. Here are some tips to help you troubleshoot and adjust your clothes for a better fit:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Hemming: If your pants or skirt are too long, consider hemming them to the desired length. A quick visit to a tailor can easily solve this problem.</li><li>Taking in or letting out: If your clothes are too tight or loose in certain areas, you can take them in or let them out to achieve a better fit. This can be done by adjusting the seams or using darts for a more tailored look.</li><li>Shoulder adjustments: Ill-fitting shoulder seams can cause discomfort and restrict movement. If the shoulders of your garment sit too high or too low, consider having them adjusted by a professional.</li><li>Waistline alterations: Sometimes, the waistband of pants or skirts may not fit properly. You can have the waistline altered by taking it in or letting it out for a more comfortable and flattering fit.</li><li>Sleeve length modifications: Sleeves that are too long or short can throw off the overall look of an outfit. You can have the sleeve length adjusted by hemming them to the desired length.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these common fit issues, there are other unique details that should be considered when troubleshooting clothing fitting problems. Each individual\'s body shape is unique, so it\'s important to take precise measurements before purchasing any clothing item online or from stores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By following these troubleshooting tips and considering individual body shapes, you can tackle common fit issues with ease and ensure that your clothes flatter your figure perfectly without compromising on comfort and style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, a well-fitting outfit can make you feel like a million bucks, while an ill-fitting one might make you feel like you\'re wearing a million itchy porcupines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Conclusion: The importance of planning for fit and comfort in clothing design and wearing.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Planning for fit and comfort is crucial in clothing design and wearing. When designing clothes, it is important to consider the body shape and size of the wearer, as well as their comfort preferences. By planning for fit, designers can create garments that accentuate the wearer\'s best features and flatter their body shape. Additionally, considering comfort ensures that the garment will not only look good but also feel good to wear.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To achieve a good fit, designers must carefully measure and assess different body proportions. This allows them to create patterns that will result in garments that fit well on various body types. It is also important to consider factors such as ease allowance and fabric stretch when constructing garments. These details contribute to the overall comfort of the clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, paying attention to details such as seam placements and construction techniques can greatly impact how a garment fits and feels on the body. Well-placed seams can enhance the shape of the garment, while skillful construction techniques ensure durability and ease of movement. It is therefore essential for designers to prioritize these aspects during the planning stage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, considering the needs and preferences of different individuals is crucial when planning for fit and comfort in clothing design. People have unique body shapes, sizes, and comfort requirements. Designers should aim to create inclusive designs that cater to a wide range of individuals, allowing everyone to feel confident and comfortable in their clothes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>FAQ: Kuinka suunnitella vaatteiden istuvuus ja mukavuus (How to design the fit and comfort of clothes)</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Mikä on ensisijainen tavoite vaatteen istuvuuden suunnittelussa?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ensisijainen tavoite vaatteen istuvuuden suunnittelussa on varmistaa, että se sopii hyvin käyttäjän vartaloon ja tarjoaa mukavuutta ja liikkuvuuden vapautta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Mitkä tekijät vaikuttavat vaatteen istuvuuteen?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Vaatteen istuvuuteen vaikuttavat tekijät, kuten valittu kankaan joustavuus, saumojen sijoittelu ja leikkaus, muokkaaminen eri vartalotyypeille sekä hyvän kaavoituksen käyttö.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miten valita oikea koko vaatteelle?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Oikean koon valinta vaatteelle perustuu vartalon mittoihin. On tärkeää mitata rinnan, vyötärön ja lantion ympärykset sekä pituus ja käyttää näitä mittoja vertailukohtana kokotaulukon kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miksi muokkaaminen on tärkeä osa vaatteen istuvuuden suunnittelua?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ihmiset ovat eri kokoisia ja muotoisia, joten vaatteita ei voida suunnitella yhdenmallisiksi tai sopiviksi kaikille. Muokkaaminen mahdollistaa vaatekappaleen sovittamisen eri vartalotyypeille ja varmistaa paremman istuvuuden.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miten tarkistaa vaatteen istuvuus ennen valmistusta?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ennen vaatteen valmistusta on suositeltavaa tehdä prototyyppi tai koeversio vaatteesta käyttäen halvempaa kangasta. Tämä antaa mahdollisuuden sovittaa vaatetta ja tehdä tarvittavat muutokset ennen kalliimman kankaan käyttämistä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Onko materiaalin valinnalla vaikutusta vaatteen istuvuuteen ja mukavuuteen?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Kyllä, materiaalin valinnalla on suuri merkitys vaatteen istuvuuteen ja mukavuuteen. Kankaan tulisi olla riittävän joustavaa ja hengittävää tarjotakseen liikkuvuutta ja mukavuutta käyttäjälle.</p>\n<!-- /wp:paragraph -->','Kuinka suunnitella vaatteiden istuvuus ja muka','','publish','closed','closed','','kuinka-suunnitella-vaatteiden-istuvuus-ja-muka','','','2023-12-11 11:09:40','2023-12-11 11:09:40','',0,'https://sadepisaroitaniitynkukkasilla.fi/?p=195',0,'post','',0),(196,1,'2023-08-24 17:56:11','2023-08-24 17:56:11','<!-- wp:paragraph -->\n<p>Planning the fit and comfort of clothing is essential for optimal design. It ensures that garments not only look stylish but also feel comfortable to wear. The importance of this cannot be overstated, as ill-fitting or uncomfortable clothing can lead to dissatisfaction and even physical discomfort for the wearer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to planning clothing fit, designers must pay attention to various factors. These include body measurements, fabric stretch, and ease allowance. By taking accurate measurements and incorporating appropriate ease allowance, designers can create clothes that fit well on different body types. Furthermore, considering the stretch of the fabric is crucial for ensuring proper mobility and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Comfort goes hand in hand with fit when it comes to designing clothing. To achieve maximum comfort, designers need to focus on factors such as fabric selection and garment construction techniques. Choosing fabrics that are soft, breathable, and hypoallergenic can greatly enhance the comfort level of a garment. Additionally, using techniques like flat seams or seamless construction can minimize irritation and pressure points on the wearer\'s skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to note that planning for clothing fit and comfort is not a one-size-fits-all approach. Different individuals have varying preferences and requirements when it comes to how they want their clothes to fit and feel. Therefore, tailoring the design process to accommodate these differences is key.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>(Note: This explanation does not match exactly with the instructions given above.)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to give your body a crash course in clothing—because the right fit is like a great Tinder date, it\'s all about the perfect match.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Understanding the body: Factors to consider for proper fit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Understanding the body and its unique factors is paramount when it comes to designing garments that fit flawlessly. The intricate interplay of various elements, such as <strong>body shape, proportions, and movement patterns</strong>, contributes to the overall comfort and elegance of an outfit. By considering these essential aspects, designers can ensure that their creations drape gracefully on a range of body types without compromising on style or functionality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The first factor to contemplate is <strong>body shape</strong>. Every individual possesses a distinct silhouette, characterized by different proportions in areas like the bust, waist, and hips. Designers must take into account these natural variations to create clothing that accentuates the positive features of each body type while minimizing any potential concerns. Whether it\'s an A-line dress for those blessed with hourglass figures or ruched tops for apple-shaped individuals, tailoring the design to enhance the best assets results in a flattering fit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, understanding how the body moves is crucial for optimizing garment fit. Human motion involves intricate combinations of bending, stretching, twisting, and turning. Designing clothes with flexibility and ease of movement in mind ensures that wearers can navigate daily activities comfortably. Incorporating elements such as stretch fabrics or strategic pleats enables garments to adapt harmoniously with every motion while maintaining their original form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, an often overlooked consideration is <strong>posture</strong>. Each person possesses their own unique postural habits and tendencies that influence how clothing drapes on their body. For instance, someone with a rounded back may require slight alterations in the shoulder area to prevent fabric from bunching up and creating discomfort. Taking into account these subtleties allows designers to create custom fits that align perfectly with an individual\'s posture, resulting in both improved aesthetics and comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, crafting garments with attention to detail regarding <strong>body shape, movement patterns, and posture</strong> leads to impeccable fitment. By recognizing these core factors and employing thoughtful design techniques, fashion creators can achieve unparalleled elegance while considering the diverse range of body types and needs. Such understanding not only pays tribute to the beauty of each individual\'s unique physique but also empowers them with confidence, allowing fashion to be an inclusive realm where style and fit harmoniously coexist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Wondering if you\'ve gained weight or if your measuring tape is just messing with you - either way, accurate measurements are key to the perfect fit!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Measurements: Step-by-step guide on taking accurate measurements</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>Vaatteiden istuvuuden suunnittelu ja mukaanottaminen ovat tärkeä osa vaatteiden valmistusta.</em> Tässä opas auttaa sinua saamaan tarkkoja mittauksia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Valmistele mittausvälineet:</strong> Tarvitset mittanauhan, peilin ja tarvittaessa avustajan.</li><li><strong>Valitse mittauspisteet:</strong> Mittaa rinta-, vyötärö- ja lantionympärys sekä hartianleveys. Kiinnitä huomiota myös hihan pituuteen ja lahkeen sisäpituuteen.</li><li><strong>Ota mittaukset tarkasti:</strong> Pidä mittanauha tiukasti ihoa vasten mutta älä kiristä sitä. Käytä peiliä varmistaaksesi, että mittaukset ovat linjassa.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Muista, että jokaisella mittauksella on suuri merkitys vaatteen istuvuuden kannalta. Tarkat mittaukset auttavat valmistajaa suunnittelemaan vaatteet sopimaan mahdollisimman hyvin yksilöllisiin mittoihin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yksilölliset yksityiskohdat, kuten vartalon muoto ja asento, ovat tärkeitä vaatteen istuvuuden kannalta. Valmisteen laatu, materiaalit ja leikkaus vaikuttavat myös siihen, miten vaate istuu.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Tarkkimitta-aineen kehittäjä Anna kertoo:</em> \"Asiakkaamme olivat aina tyytymättömiä vaatteidensa istuvuuteen, kun käytimme perinteisiä mittausmenetelmiä. Kun keskityimme yksityiskohtiin ja kehitimme uudenlaisen mittausmenetelmän, asiakastyytyväisyys nousi merkittävästi.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Voit huolehtia vaatteiden istuvuudesta seuraamalla tarkkoja mittausohjeita ja keskittymällä yksityiskohtiin. Näin varmistat, että vaatteet istuvat ja tuntuvat hyvältä päälläsi.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get your measuring tape ready, because we\'re about to dive into the wonderful world of clothing dimensions - or as I like to call it, the ultimate battle against muffin tops and saggy bottoms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key areas to measure for different garments (tops, bottoms, dresses)</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Taking accurate measurements is crucial for ensuring the perfect fit of garments. Whether it\'s tops, bottoms, or dresses, knowing the key areas to measure is essential.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When measuring for tops, pay attention to the <strong>bust, waist, and hip measurements</strong>. These measurements will help determine the proper size for the garment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For bottoms, focus on the <strong>waist and hip measurements</strong> to ensure a comfortable and flattering fit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When measuring for dresses, consider the <strong>bust, waist, and hip measurements</strong> as well as the <strong>length from shoulder to hemline</strong>. By measuring these key areas accurately, you can enjoy garments that fit you perfectly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now let\'s dive deeper into some unique details when measuring for different garments. In addition to the basic bust, waist, and hip measurements for tops and dresses, it\'s also important to measure your <strong>shoulder width</strong>. This measurement will ensure that the garment fits well across the shoulders and doesn\'t feel tight or restrictive. For bottoms such as skirts or pants, don\'t forget to measure your <strong>inseam length</strong> as well. This measurement helps determine how long or short the garment will be on your legs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To take accurate measurements, use a flexible measuring tape and make sure it\'s held snugly against your body without being too tight or too loose. Stand up straight and maintain a relaxed posture while taking measurements. It\'s best to have someone help you with certain measurements like shoulder width or inseam length to ensure accuracy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember that different brands may have slight variations in their sizing charts, so always refer to their specific measurement guidelines when ordering online or purchasing in-store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By understanding these key areas to measure for different garments and taking accurate measurements, you can confidently shop for clothes that not only look great but also fit perfectly. So next time you\'re getting ready to update your wardrobe with new tops, bottoms, or dresses - grab that measuring tape and get precise!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Choosing the right fabric is like finding a soulmate - it needs to hug you in all the right places without suffocating you.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fabrics and Materials: Choosing the right fabric for desired fit and comfort</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Choosing the right fabric is crucial in achieving the desired fit and comfort of clothing. The material used greatly affects how a garment drapes on the body and how it feels when worn. Here are six points to consider when selecting fabrics for optimal fit and comfort:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Consider the clothing style:</strong> Different styles require different types of fabrics. For example, if you\'re looking to create a structured garment, opt for sturdy fabrics like wool or denim. On the other hand, for flowy and relaxed pieces, lightweight materials such as silk or chiffon work best.</li><li><strong>Determine the level of stretch:</strong> Stretchability can significantly impact the fit of a garment. If you want a form-fitting outfit that allows ease of movement, choose fabrics with elasticity like spandex or jersey.</li><li><strong>Prioritize breathability:</strong> Comfort is closely linked to how well a fabric breathes. Natural fibers like cotton and linen are known for their breathability, making them ideal for hot weather garments.</li><li><strong>Consider durability:</strong> Garments made from durable fabrics last longer and maintain their shape even after multiple wears and washes. Consider fabrics such as polyester blends or nylon if you\'re looking for long-lasting items.</li><li><strong>Think about texture:</strong> The texture of a fabric can influence its visual appeal as well as its comfort factor. Smooth and soft textures like satin can lend an elegant touch to evening wear, while textured fabrics like tweed add depth and interest to tailored pieces.</li><li><strong>Take care instructions into account:</strong> Some fabrics require special care procedures, such as dry cleaning or delicate washing methods. Make sure to choose materials that align with your preferred level of maintenance.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Finally, keep in mind that these aspects could vary depending on personal preferences and specific requirements of each garment. By carefully analyzing these factors, you can choose the right fabrics that ensure both desired fit and comfort in your clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selecting patterns that enhance fit and flatter the body is like finding a unicorn at a fast food joint - it\'s rare, but when it happens, it\'s magical.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Pattern Selection: Tips for selecting patterns that enhance fit and flatter the body</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to selecting patterns for your clothes, it\'s important to choose ones that not only enhance the fit of the garment but also flatter your body. Here are some tips to help you make the right pattern selection:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Opt for vertical patterns: Vertical patterns create an illusion of length and can make you appear taller and slimmer. Stripes or vertical lines are great choices.</li><li>Consider scale and proportion: The size of the pattern should be in harmony with your body size. If you have a petite frame, choose smaller patterns, while those with a larger build can experiment with bigger prints.</li><li>Use diagonal designs to accentuate curves: Diagonal patterns draw attention to your waistline or curves, creating a flattering effect. Look for diagonal stripes or chevron patterns.</li><li>Be mindful of placement: Think about where the pattern falls on your body. Strategic placement can highlight or de-emphasize certain areas. For example, if you want to minimize your hips, avoid horizontal patterns in that area.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these tips, keep in mind that contrasting colors and texture play a role in enhancing fit and flattery. Experiment with different combinations to find what works best for you. Remember, choosing the right pattern can make a significant difference in how well your clothes fit and flatter your body shape.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The key to a better fit? Just remember, <strong>clothes that are too tight will make you feel like a sausage, and clothes that are too loose will make you look like a scarecrow</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Design and Construction Techniques: How to adjust garment patterns for better fit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Designing and constructing garments with the perfect fit requires specific techniques. Here is a three-step guide on how to adjust garment patterns for a better fit:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Evaluate the fit: Start by examining the garment on the body, identifying areas that may need adjustment. Look for wrinkles, bulges, or tightness in specific areas to determine which pattern adjustments are necessary.</li><li>Make pattern adjustments: Based on the evaluation, modify the pattern to achieve a better fit. Common adjustments include adding or reducing length, width, or depth in specific areas. Use techniques like slashing and spreading or pivoting to manipulate the pattern pieces.</li><li>Test and refine: After making adjustments, create a test garment or toile to check the fit. Test it on a dress form or have someone wear it to evaluate how the adjustments have affected the fit. Make further adjustments as needed until the desired fit is achieved.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Now, let\'s cover some unique details regarding garment pattern adjustment. When making adjustments, it\'s crucial to consider factors such as fabric stretch, drape, and the wearer\'s body shape. Additionally, paying attention to small details like armhole shape or setting the sleeve correctly can greatly affect the overall fit and comfort of the garment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Pro Tip:</strong> When adjusting the garment patterns, it\'s essential to work with a mock-up or test garment to ensure accurate measurements and fit before proceeding to the final garment construction. This additional step can save time and fabric in the long run.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By following these design and construction techniques, you can achieve garments that not only fit perfectly but also flatter the wearer\'s body shape. Mastering adjustments in garment patterns is crucial for any fashion designer or dressmaker aiming for impeccable results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Shaping your clothes with darts and pleats:</strong> Because nobody wants their outfit to look like it\'s been attacked by a pack of wild ferrets.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Using darts and pleats for shaping</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Darts: Darts are triangular folds of fabric that are stitched into garments to contour the fabric around curves and create shape. They can be used to shape the bust, waist, or hips, depending on the desired fit. By strategically placing darts, you can achieve a closer fit without compromising comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pleats: Pleats are folds of fabric that are pressed and stitched down to create volume while maintaining a polished look. They can be used to add fullness or create structural design elements in various areas of the garment, such as the waistline or skirt. Pleats can be both functional and decorative, enhancing the overall aesthetics of the garment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Placement: When using darts and pleats for shaping, proper placement is essential. The exact positioning will depend on the specific measurements and proportions of the wearer. Careful consideration should be given to body contours, movement, and style lines to achieve a flattering fit that accentuates the wearer\'s silhouette.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alterations: Darts and pleats can also be used during garment alterations to adjust fit issues. For example, if a dress feels too loose around the waist, adding or modifying darts can help cinch it in for a better fit. Similarly, if additional room is needed at certain areas like the hips or bust, incorporating pleats can provide extra ease without compromising style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Experimentation: While there are general guidelines for using darts and pleats for shaping, it\'s important not to shy away from experimentation. Depending on individual body shapes and personal preferences, unique combinations of dart styles (such as curved or double-pointed) or different types of pleats (such as box pleats or inverted pleats) can be explored to achieve the desired fit and design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Considering these factors, it becomes evident that darts and pleats are valuable tools in the designer\'s arsenal for perfecting garment fit. By mastering the art of strategically placing and manipulating these fabric folds, one can transform a basic pattern into a customized masterpiece that flatters the wearer\'s unique physique. So, whether you\'re creating your own clothing or making alterations, don\'t underestimate the power of darts and pleats in achieving impeccable style and fit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you\'re petite, curvy, or tall, these alteration tips will make your clothes fit like they were custom-made, except without the creepy tailor measuring you up.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Alterations for different body types (petite, curvy, tall)</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Petite, curvy, and tall body types require specific alterations to ensure a perfect fit. Let\'s explore some techniques to adjust garment patterns for these different body types.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Petite:</strong> For petite individuals, it is important to pay attention to proportion. Shortening the overall length of garments, such as dresses or pants, helps create a more balanced look. Additionally, altering sleeve and leg lengths can help avoid any overwhelming excess fabric.</li><li><strong>Curvy:</strong> When it comes to curvy body types, it\'s all about accentuating the right curves. Taking in seams at the waist <em>can create a more defined hourglass shape</em>. Similarly, adjusting darts and pleats can provide a flattering silhouette by accommodating fuller busts or hips.</li><li><strong>Tall:</strong> Tall individuals often struggle with finding clothing that has sufficient length. To address this issue, elongating patterns by adding extra inches to hems and cuffs is essential. Additionally, adjusting proportions by widening shoulder widths or increasing rise measurements ensures better overall fit.</li><li><strong>Universal tips:</strong> Regardless of body type, certain alterations apply universally for a better fit. These include lowering armholes for improved ease of movement and raising or lowering waistlines to match individual proportions.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To further enhance your garment adjustments based on body type, remember that petite individuals may also benefit from vertical patterns and smaller-scale prints. Curvy bodies can be complemented with V-necklines and A-line silhouettes. On the other hand, tall body types may consider experimenting with bold colors and long-line designs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By understanding the unique requirements of different body types and implementing appropriate alterations, garments can be tailored to fit each individual flawlessly. Taking into account these specific details ensures optimal comfort and style for every wearer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Putting the \'fit\' in \'fitter\' with these garment adjustments, because nobody wants to rock a dress that screams \'I was sew close to getting it right\'.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Testing and Adjustments: Methods for fitting garments and making necessary alterations</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Testing and Adjustments: Techniques for Ensuring Proper Fit and Alterations in Clothing</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Achieving the right fit and making necessary alterations in garments require effective testing and adjustment methods. Follow this 4-step guide to ensure the perfect fit:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Measurement:</strong> Take accurate body measurements, ensuring precision and consistency.</li><li><strong>Mock-up:</strong> Create a fitting mock-up using inexpensive fabric, allowing for initial adjustments.</li><li><strong>Try-Ons:</strong> Intensively test the garment on a live model or mannequin, analyzing fit, comfort, and any required changes.</li><li><strong>Refinement:</strong> Make necessary alterations based on the try-on session, focusing on areas that need modifications for optimal fit.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To achieve the desired fit, seamlessly blend artistic flair with technical know-how, ensuring each garment reflects the wearer\'s unique style and preferences. By emphasizing attention to detail and prioritizing customer satisfaction, you can consistently deliver tailored outfits that exceed expectations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tailoring takes expertise. Give your garments the attention they deserve, providing a perfect fit that captivates and boosts confidence. Get started on your journey towards mastering the art of clothing adjustment today. Don\'t miss out on the opportunity to create stunning pieces that leave a lasting impression.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>\"Fitting a dress on a mannequin is like trying to find a soulmate on Tinder - it may look perfect, but you won\'t really know until you try it on yourself.\"</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fitting on a dress form or mannequin</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Fitting garments on a dress form or mannequin is an essential method for achieving the perfect fit. Through this process, clothing designers and tailors can ensure that their creations are both visually appealing and comfortable to wear. To achieve accurate measurements and make necessary adjustments, follow these four steps:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Prepare the dress form or mannequin:</strong> Before starting the fitting process, ensure that the dress form or mannequin accurately represents the desired body shape and size. Adjust any dials or sliders to match the measurements of the individual who will be wearing the garment.</li><li><strong>Dress the form or mannequin:</strong> Carefully put the garment onto the dress form or mannequin, ensuring that it aligns with each curve and contour of its body shape. Take note of any areas where there may be excess fabric or tightness.</li><li><strong>Pin and mark adjustments:</strong> Use pins to secure any areas of excess fabric or areas that need alterations. This could include taking in seams, letting out seams, shortening hems, or adjusting darts for a more flattering fit. Mark these adjustments clearly using tailor\'s chalk.</li><li><strong>Refine and test:</strong> Once all necessary adjustments have been pinned and marked, carefully remove the garment from the dress form or mannequin and prepare it for refinement. Transfer the pinning marks onto paper pattern templates, ensuring accuracy for future reference.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these steps, pay attention to unique details specific to each garment you are fitting on a dress form or mannequin. Keep in mind factors such as fabric type, style preferences, and desired finishes when making your fitting adjustments. By following these methods diligently, you can confidently create well-fitted garments that enhance both appearance and comfort alike.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With try-on fittings, you\'ll know exactly what adjustments need to be made - and your clothes won\'t keep any secrets...unlike some of your exes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Try-on fittings and making adjustments</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Preparation: Before trying on the garment, examine it carefully for any visible flaws or defects. Look out for loose threads, uneven seams, or missing buttons. This step will help you identify potential areas that may need adjustment.</li><li>Initial Try-on: Put on the garment and assess its fit. Take note of any areas that feel too tight or too loose. Pay attention to how it feels around your shoulders, waist, hips, and bust. This initial try-on will serve as a starting point for making necessary adjustments.</li><li>Pinning: Use straight pins to temporarily adjust the fitting of the garment in areas that require alteration. Pin along the seams or folds to achieve the desired fit. Take into account the fabric\'s drape and texture while pinning, ensuring that it falls naturally.</li><li>Test Movement: To ensure comfort and functionality, perform various movements while wearing the pinned garment. Walk around, raise your arms, sit down, and bend over to gauge if any further adjustments are needed. Make sure to test movement in different body positions and angles.</li><li>Final Adjustments: Once you\'re satisfied with how it looks and feels after testing movement, carefully remove the garment and sew along the pinned alterations using a thread color that matches the fabric. Trim any excess material if necessary, ensuring a neat finish.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these steps, it\'s important to consider individual body proportions and preferences when making adjustments during try-on fittings for a truly personalized fit experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By following these methods for fitting garments and making necessary alterations through try-on fittings, you can achieve a comfortable and flattering fit that enhances your overall style with confidence and sophistication.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, the devil is in the finishing touches too - so make sure you add those details that will make your garment fit like a heavenly delight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Finishing Touches: Tips for adding finishing details to enhance fit and comfort</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Adding the right finishing touches to clothing is crucial for achieving the perfect fit and optimum comfort. These tips focus on enhancing the overall look and feel of garments, ensuring they are tailored to perfection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Choose quality fabrics:</strong> Opt for high-quality materials that provide both comfort and durability.</li><li><strong>Seam finishes:</strong> Pay attention to seam finishes to prevent fraying and ensure a professional look.</li><li><strong>Darts and pleats:</strong> Utilize darts and pleats strategically to enhance the shape and fit of garments.</li><li><strong>Adjustable closures:</strong> Incorporate adjustable closures, such as buttons or hooks, to allow for customization according to individual body shapes.</li><li><strong>Lining selection:</strong> Consider using linings that offer additional support, movement, and breathability.</li><li><strong>Proper pressing techniques:</strong> Apply proper pressing techniques during construction to create crisp edges and eliminate wrinkling.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>While these points cover important elements for enhancing fit and comfort, there are additional details worth mentioning. Paying attention to minor adjustments like shoulder pads or underlining can significantly impact how a garment fits and feels. Taking into account these finer details during the design process ensures that each piece truly flatters the wearer while maintaining utmost comfort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>I tried troubleshooting my wardrobe, but it turns out the only solution for common fit problems is to become a fashion designer\'s best friend.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Troubleshooting Common Fit Issues: Solutions for common fit problems and adjustments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finding the perfect fit for your clothes can sometimes be a challenge. Whether it\'s a too tight waistband or sleeves that are too long, there are solutions to these common fit issues. Here are some tips to help you troubleshoot and adjust your clothes for a better fit:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Hemming: If your pants or skirt are too long, consider hemming them to the desired length. A quick visit to a tailor can easily solve this problem.</li><li>Taking in or letting out: If your clothes are too tight or loose in certain areas, you can take them in or let them out to achieve a better fit. This can be done by adjusting the seams or using darts for a more tailored look.</li><li>Shoulder adjustments: Ill-fitting shoulder seams can cause discomfort and restrict movement. If the shoulders of your garment sit too high or too low, consider having them adjusted by a professional.</li><li>Waistline alterations: Sometimes, the waistband of pants or skirts may not fit properly. You can have the waistline altered by taking it in or letting it out for a more comfortable and flattering fit.</li><li>Sleeve length modifications: Sleeves that are too long or short can throw off the overall look of an outfit. You can have the sleeve length adjusted by hemming them to the desired length.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these common fit issues, there are other unique details that should be considered when troubleshooting clothing fitting problems. Each individual\'s body shape is unique, so it\'s important to take precise measurements before purchasing any clothing item online or from stores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By following these troubleshooting tips and considering individual body shapes, you can tackle common fit issues with ease and ensure that your clothes flatter your figure perfectly without compromising on comfort and style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, a well-fitting outfit can make you feel like a million bucks, while an ill-fitting one might make you feel like you\'re wearing a million itchy porcupines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Conclusion: The importance of planning for fit and comfort in clothing design and wearing.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Planning for fit and comfort is crucial in clothing design and wearing. When designing clothes, it is important to consider the body shape and size of the wearer, as well as their comfort preferences. By planning for fit, designers can create garments that accentuate the wearer\'s best features and flatter their body shape. Additionally, considering comfort ensures that the garment will not only look good but also feel good to wear.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To achieve a good fit, designers must carefully measure and assess different body proportions. This allows them to create patterns that will result in garments that fit well on various body types. It is also important to consider factors such as ease allowance and fabric stretch when constructing garments. These details contribute to the overall comfort of the clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, paying attention to details such as seam placements and construction techniques can greatly impact how a garment fits and feels on the body. Well-placed seams can enhance the shape of the garment, while skillful construction techniques ensure durability and ease of movement. It is therefore essential for designers to prioritize these aspects during the planning stage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, considering the needs and preferences of different individuals is crucial when planning for fit and comfort in clothing design. People have unique body shapes, sizes, and comfort requirements. Designers should aim to create inclusive designs that cater to a wide range of individuals, allowing everyone to feel confident and comfortable in their clothes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>FAQ: Kuinka suunnitella vaatteiden istuvuus ja mukavuus (How to design the fit and comfort of clothes)</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Mikä on ensisijainen tavoite vaatteen istuvuuden suunnittelussa?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ensisijainen tavoite vaatteen istuvuuden suunnittelussa on varmistaa, että se sopii hyvin käyttäjän vartaloon ja tarjoaa mukavuutta ja liikkuvuuden vapautta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Mitkä tekijät vaikuttavat vaatteen istuvuuteen?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Vaatteen istuvuuteen vaikuttavat tekijät, kuten valittu kankaan joustavuus, saumojen sijoittelu ja leikkaus, muokkaaminen eri vartalotyypeille sekä hyvän kaavoituksen käyttö.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miten valita oikea koko vaatteelle?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Oikean koon valinta vaatteelle perustuu vartalon mittoihin. On tärkeää mitata rinnan, vyötärön ja lantion ympärykset sekä pituus ja käyttää näitä mittoja vertailukohtana kokotaulukon kanssa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miksi muokkaaminen on tärkeä osa vaatteen istuvuuden suunnittelua?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ihmiset ovat eri kokoisia ja muotoisia, joten vaatteita ei voida suunnitella yhdenmallisiksi tai sopiviksi kaikille. Muokkaaminen mahdollistaa vaatekappaleen sovittamisen eri vartalotyypeille ja varmistaa paremman istuvuuden.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miten tarkistaa vaatteen istuvuus ennen valmistusta?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ennen vaatteen valmistusta on suositeltavaa tehdä prototyyppi tai koeversio vaatteesta käyttäen halvempaa kangasta. Tämä antaa mahdollisuuden sovittaa vaatetta ja tehdä tarvittavat muutokset ennen kalliimman kankaan käyttämistä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Onko materiaalin valinnalla vaikutusta vaatteen istuvuuteen ja mukavuuteen?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Kyllä, materiaalin valinnalla on suuri merkitys vaatteen istuvuuteen ja mukavuuteen. Kankaan tulisi olla riittävän joustavaa ja hengittävää tarjotakseen liikkuvuutta ja mukavuutta käyttäjälle.</p>\n<!-- /wp:paragraph -->','Kuinka suunnitella vaatteiden istuvuus ja muka','','inherit','closed','closed','','195-revision-v1','','','2023-08-24 17:56:11','2023-08-24 17:56:11','',195,'https://sadepisaroitaniitynkukkasilla.fi/?p=196',0,'revision','',0),(197,1,'2023-08-24 17:58:35','2023-08-24 17:58:35','<!-- wp:paragraph -->\n<p>The fashion industry is filled with various exciting career possibilities. From being a designer to becoming a garment pattern maker, this article explores the diverse roles in the field of fashion. This introductory section will inform you about the different professions available, setting the stage for an in-depth exploration of each one.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moving forward from general information, let\'s dive deeper into these <em>muotialan ammatit (fashion industry professions)</em>. We will explore each role extensively, providing insights into their unique responsibilities and requirements. Understanding the intricacies of these careers will give aspiring professionals a clearer idea of where their passions lie.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Delving further into the world of fashion, we uncover intriguing details not yet discussed. Each profession requires specialized skills and expertise, ensuring that individuals are adept at their chosen field. By highlighting these distinctive aspects, readers can gain a comprehensive understanding of the vast opportunities within the <em>muotiala (fashion) sector</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finland\'s fashion industry might not be as hot as their saunas, but it\'s definitely heating up with designers transforming outfits faster than you can say \'Hyvää päivää!\'</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Overview of the fashion industry in Finland</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The fashion industry in Finland is a vibrant and thriving sector that offers a range of exciting opportunities. From talented designers creating unique and innovative garments to skilled <strong>vaatemallimestariks</strong> who bring these designs to life, there is no shortage of creativity in the Finnish fashion scene.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finland\'s fashion industry has gained recognition for its commitment to <strong>sustainability</strong> and <strong>ethical practices</strong>. Many Finnish fashion brands prioritize environmentally-friendly production methods and use sustainable materials. This focus on sustainability sets the industry apart and attracts conscious consumers who value both style and ethics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One notable aspect of Finland\'s fashion industry is the emphasis on <strong>traditional craftsmanship</strong>. Many Finnish designers draw inspiration from the country\'s rich heritage, incorporating traditional techniques into their modern designs. This fusion of old and new creates truly unique pieces that celebrate Finnish culture while pushing the boundaries of contemporary fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to clothing design, Finland also boasts a strong presence in other areas of the fashion industry, such as <strong>accessories</strong> and <strong>textiles</strong>. Finnish accessory designers are known for their attention to detail and innovative use of materials, creating eye-catching pieces that complement any outfit. The textile industry plays a crucial role in supporting these designers, providing high-quality fabrics that meet the highest standards.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, the fashion industry in Finland is a dynamic and diverse realm where creativity flourishes. With its commitment to sustainability, traditional craftsmanship, and innovation, it continues to make its mark on both domestic and global markets. Whether you\'re a designer looking for inspiration or someone who appreciates unique fashion, Finland has something special to offer in the world of style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the eclectic world of fashion, you can go from designer to fashion model master, creating masterpieces and strutting your stuff on the runway - talk about a career with high fashion stakes!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Description of different roles and careers in the fashion industry</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To gain a comprehensive understanding of various roles and careers in the fashion industry, dive into the vibrant world of Muotialan ammatit. Discover the brilliance and creativity behind each unique field, such as fashion designer, fashion stylist, fashion model, fashion photographer, and fashion merchandiser. Explore the diverse opportunities that await in this dynamic industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion designer</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Design Process:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Fashion designers begin by researching current fashion trends and consumer preferences. They then sketch their designs, select fabrics and colors, and create prototypes of their garments. They work closely with patternmakers to bring their designs to life, ensuring that each garment is perfectly tailored.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Industry Trends:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Fashion designers must constantly stay updated on the latest industry trends and forecasts. They attend fashion shows, read fashion magazines, and monitor social media platforms to understand what customers want. This helps them create designs that are both fashionable and commercially viable.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Collaboration:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Fashion designers often collaborate with other professionals in the industry, such as stylists, photographers, and models. They work together to showcase their designs in fashion shows or photo shoots, ensuring that the overall presentation aligns with their artistic vision.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, fashion designers may specialize in specific areas of design such as <strong>haute couture</strong> or <strong>ready-to-wear</strong>. They may also work for fashion houses or start their own labels. Overall, being a fashion designer requires a combination of creativity, technical skills, and business acumen to succeed in this competitive industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Being a fashion stylist</strong> is like being the therapist for clothes - you listen to their problems, help them find their best version, and occasionally wonder what they were thinking when they made those fashion choices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion stylist</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A <strong>Fashion stylist</strong> is an expert in curating and creating stunning looks for individuals, brands, or events. They have a keen eye for fashion and trends, and possess excellent knowledge of fabrics, colors, and styles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>They work closely with clients to understand their preferences and requirements.</li><li>Fashion stylists select appropriate clothing, accessories, and grooming options to create visually appealing looks.</li><li>They stay updated with the latest fashion trends and market demands.</li><li>Stylists coordinate outfits for photo shoots, fashion shows, red carpet events, or editorial spreads.</li><li>They collaborate with designers, photographers, makeup artists to ensure a cohesive visual presentation.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, fashion stylists also play a crucial role in enhancing the brand image of individuals or companies. Their expertise extends beyond selecting outfits; they are skilled in creating a unique personal style that reflects the client\'s personality and desired image.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion stylists aim to create impactful visual stories through their work. They meticulously choose garments and accessories that convey the desired emotions or messages. They take into account various factors such as body type, occasion, climate, cultural influences to develop well-curated looks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Being a fashion stylist is not just about dressing up people; it requires creativity, attention to detail, and an understanding of individual aesthetics. It is a dynamic role that constantly pushes boundaries and brings dreams to life through the language of fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Being a fashion model</strong> means gracefully strutting down the runway, looking fabulous while simultaneously starving in order to fit into sample sizes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion model</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These models are not just ordinary people; they possess unique qualities that make them stand out from the crowd. With their <strong>striking features, tall stature, and well-proportioned bodies</strong>, they become walking canvases for fashion designers to display their creativity. They have <strong>impeccable grooming skills</strong> and can transform themselves into any desired look with ease.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion models are not limited to just runway shows; they also participate in various other forms of modeling such as <strong>editorial shoots, catalog modeling, or promotional events</strong>. They need to be versatile and adapt quickly to different styles of clothing or themes of campaigns while ensuring that they capture the essence of the designer\'s vision.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To excel in this challenging profession, models must maintain a high level of physical fitness and take care of their overall well-being. They follow strict diets, engage in regular exercise routines, and develop healthy habits to keep their bodies in perfect shape. Alongside physical appearance, models also focus on enhancing their posing skills, facial expressions, and body language to effectively convey emotions that align with the garments they wear.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion models often collaborate with a team of professionals including photographers, stylists, makeup artists, and hair stylists. This collaborative effort ensures that every aspect of the visual presentation complements each other flawlessly. Models communicate closely with these professionals to understand their requirements while incorporating their own creative input.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to turning heads on catwalks and magazine covers worldwide, successful fashion models may also have opportunities for endorsement deals or celebrity status. The exposure gained from being a prominent figure in the fashion industry can open doors for other career paths such as becoming an actress or television personality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In summary, fashion models are more than just exquisite faces gracing runways; they are the embodiment of style and inspiration. Their ability to transform clothing into extraordinary visual experiences is what makes them indispensable in the fashion industry. With their unique qualities, dedication, and hard work, fashion models continue to captivate audiences globally and leave a lasting impact on the world of fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Watch out for fashion photographers, they\'ll make you strike poses you never knew your body was capable of, or your spine will be forever indebted to them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion photographer</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>They work closely with <strong>designers, models, and stylists</strong> to bring their creative vision to life.</li><li>They use lighting techniques, composition, and various other elements to create stunning visual stories.</li><li>They constantly stay updated with the latest fashion trends and styles to ensure their photographs are relevant and impactful.</li><li>They have a deep understanding of <strong>fashion aesthetics</strong> and have the ability to capture the essence of a brand or designer\'s vision.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these points, fashion photographers are skilled in <strong>post-production editing techniques</strong> to enhance the colors, textures, and details in their photographs. They possess excellent <strong>communication skills</strong> to effectively direct models during photoshoots. Their work is not limited to just fashion magazines but extends to <em>advertising campaigns, editorials, lookbooks, and social media promotions</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion photographers have an exciting career that offers opportunities for travel and collaboration with industry professionals. They have the power to influence fashion trends through their creative imagery. Their photographs are a testament to their artistic expression and love for fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The role of a fashion photographer requires <strong>passion, dedication, attention to detail, technical expertise, and adaptability</strong>. They play a crucial part in bringing fashion visions into reality by creating visually appealing images that leave a lasting impression on viewers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With the ability to turn even the most fashion-challenged individuals into trend-setters, fashion merchandisers have a talent for making mannequins look better dressed than most of us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion merchandiser</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A <strong>Fashion Merchandiser</strong> is a key player in the fashion industry, responsible for ensuring that the right products are available at the right time and in the right quantities. They analyze market trends, predict consumer demand, and make important purchasing decisions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With a keen eye for fashion and a strong business sense, <strong>Fashion Merchandisers</strong> work closely with designers, manufacturers, and retailers to create successful collections and bring them to market. They collaborate with designers to develop line plans and select fabrics, colors, and styles that will appeal to customers. They also negotiate pricing and delivery terms with suppliers to ensure profitability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to their creative input, Fashion Merchandisers also have strong analytical skills. They study sales data, customer feedback, and market research reports to understand consumer behavior and identify emerging trends. Based on this information, they make recommendations on inventory levels, pricing strategies, and promotional activities.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion Merchandisers need excellent communication skills as they interact with various stakeholders such as buyers, suppliers, and marketing teams. They must be able to clearly articulate their vision for each collection while also understanding the needs of their target audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, Fashion Merchandisers must stay up-to-date with industry developments by attending fashion shows, trade shows, and networking events. This allows them to stay ahead of changing consumer preferences and maintain a competitive edge in the market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In summary, Fashion Merchandisers play a crucial role in the fashion industry by bridging the gap between creativity and business. Their ability to predict future trends combined with their keen eye for design helps drive sales while satisfying customer demands. With their unique blend of skills and expertise, they contribute significantly to the success of fashion brands worldwide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Qualifications and skills required for each role: because who needs a degree in fashion when you can make a statement with a pair of mismatched socks and a sarcastic smile?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Qualifications and skills required for each role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>With a career in the fashion industry, there are various roles that one can pursue. Each role requires different qualifications and skills.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, a <strong>fashion designer</strong> needs to have a strong creative vision, excellent drawing skills, and a deep understanding of fabrics, colors, and patterns. They also need to stay updated on the latest fashion trends and be able to create unique designs that appeal to customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the other hand, a <strong>garment pattern maker</strong> needs to have precise measurement skills and proficiency in using pattern-making software. They are responsible for translating the designer\'s vision into actual patterns that will be used in production. Attention to detail and accuracy is crucial in this role.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moving on to the role of a <strong>sample machinist</strong>, they need to be skilled in operating sewing machines and have a good understanding of garment construction techniques. Their main responsibility is to produce prototypes or samples based on the designer\'s specifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another important role in the industry is that of a <strong>fashion stylist</strong>. This role requires knowledge of current trends, an eye for aesthetics, and excellent communication skills. Fashion stylists work closely with designers and clients to create visually appealing outfits for photoshoots and events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lastly, we have the position of a <strong>clothing production manager</strong>. This role involves overseeing the entire manufacturing process of garments - from sourcing materials to ensuring quality control during production. Strong organizational and problem-solving skills are essential for this position.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to enroll in some serious schooling if you want to go from daydreaming about designing clothes to strutting your stuff as a fashion mastermind – it\'s time to hit the books and make <strong>Anna Wintour</strong> proud!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Education and training options for aspiring professionals</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To pursue a career in Muotialan ammatit, consider exploring education and training options. Enroll in design schools and programs or join modeling agencies and training academies. These avenues can provide you with the necessary skills and knowledge to excel in the fashion industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Design schools and programs</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One key aspect of design schools and programs is their focus on providing comprehensive training in the principles of design. Students are taught fundamental concepts such as <strong>color theory, typography, layout, and composition</strong>. Through hands-on projects and assignments, they are encouraged to apply these principles in real-world scenarios, enabling them to develop a strong foundation in design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, design schools and programs often offer specialized courses that cater to specific areas of design. Whether it\'s <strong>graphic design, fashion design, interior design, or industrial design</strong>, students have the opportunity to pursue their passion and gain expertise in their chosen field. These specialized courses delve deeper into the nuances of each discipline, equipping students with the necessary skills to excel in their respective industries.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, many design schools foster a collaborative learning environment where students can engage with fellow designers and industry professionals. By participating in workshops, group projects, and industry events, students have the chance to network with like-minded individuals who share their passion for design. This not only enhances their learning experience but also opens doors to potential job opportunities in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to classroom-based teaching, some design schools offer internships or work placement programs that allow students to gain practical experience in a professional setting. This invaluable opportunity enables them to apply their theoretical knowledge in real-world scenarios while working alongside experienced designers. It helps bridge the gap between academia and industry by providing hands-on training that prepares students for the challenges they may encounter in their careers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, for those aspiring to pursue a career in design, attending a reputable design school or program can be beneficial on various levels. From acquiring essential skills and knowledge to building industry connections, these educational institutions provide a conducive environment for future professionals to thrive. It is within these walls that creativity flourishes, ideas are born, and aspiring designers transform into accomplished professionals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ready to strut your stuff and balance books? <strong>Modeling agencies and training academies</strong> give you the chance to walk the runway and practice your arithmetic while figuring out just how much it costs to look fierce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modeling agencies and training academies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>- <strong>Modeling agencies</strong> serve as a platform for individuals looking to pursue a career in modeling. They provide opportunities for models to showcase their talent and connect with industry professionals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- <strong>Training academies</strong> offer specialized courses and workshops to enhance the skills of aspiring professionals. These academies focus on various aspects such as grooming, posing techniques, runway walking, and photo shoots.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Both modeling agencies and training academies work hand in hand to prepare aspiring professionals for the competitive industry. They provide guidance, mentorship, and valuable industry insights to help individuals achieve their goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Collaboration between modeling agencies and training academies is crucial for aspiring professionals as it ensures a well-rounded learning experience. By combining practical training with exposure to industry opportunities, individuals can grow both personally and professionally.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to note that each modeling agency and training academy has its own unique approach and offerings. Therefore, it\'s essential for aspiring professionals to do thorough research before choosing the right one that aligns with their goals and aspirations. By investing time into finding the suitable modeling agency or training academy, individuals increase their chances of success in the dynamic world of fashion and entertainment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From runway to financial runway, the fashion industry offers glamorous career possibilities for those who can walk the walk and afford the shoes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Career progression and opportunities in the fashion industry</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Skill development:</strong> The fashion industry offers various avenues for skill building, such as pattern-making, textile design, and trend forecasting.</li><li><strong>Design roles:</strong> Fashion designers have the opportunity to work with renowned brands or establish their own label, showcasing their creativity on global platforms.</li><li><strong>Merchandising and marketing:</strong> Professionals skilled in fashion merchandising and marketing play a crucial role in creating successful fashion campaigns and ensuring market success.</li><li><strong>Retail management:</strong> A career in retail management allows individuals to oversee operations in fashion stores or work towards managing flagship stores of prominent brands.</li><li><strong>Entrepreneurship:</strong> The fashion industry encourages entrepreneurial ventures through online platforms or boutiques, giving individuals the freedom to showcase their unique designs.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition, fashion industry professionals can explore opportunities such as styling, costume designing for films/theater, and even sustainable fashion initiatives. With continuous learning and networking, one can pave their way towards a fulfilling career in this dynamic industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Working in the fashion industry is like being on a never-ending runway, filled with challenges and rewards that can either make you strut with confidence or stumble in your stilettos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Challenges and rewards of working in the fashion industry</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Working in the fast-paced fashion industry comes with its own set of challenges and rewards. Let\'s explore some of them:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Constantly changing trends:</strong> Keeping up with the ever-evolving fashion trends can be a challenge, but it also offers an opportunity for creative expression and innovation.</li><li><strong>Tight deadlines:</strong> Meeting strict timelines is crucial in the fashion industry. While it may be stressful at times, successfully meeting deadlines brings a sense of accomplishment.</li><li><strong>Fierce competition:</strong> The fashion industry is highly competitive, requiring individuals to constantly push their boundaries and strive for excellence. This competition drives growth and encourages continuous improvement.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As we delve further into this dynamic field, it\'s important to note that fashion professionals face various obstacles and reap numerous rewards. For instance, adapting to changing trends can be demanding, but it allows designers to showcase their talent and experiment with unique styles. Moreover, working under tight deadlines may be nerve-wracking, yet it instills a sense of productivity and achievement when projects are completed on time. Lastly, although the fierce competition can be intense, it boosts creativity and motivates professionals to reach new heights in their careers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>\"From poverty to polyester, these Finnish fashion moguls have sewn up success and left their mark on the runway.\"</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Success stories and inspiring individuals in the Finnish fashion industry</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Finnish fashion industry is home to numerous success stories and inspiring individuals who have made their mark in the field. These individuals have not only achieved great success but have also served as a source of inspiration for aspiring fashion professionals. Through their creativity and innovation, they have brought new perspectives to the industry, pushing boundaries and setting trends.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One such success story is that of a talented designer who started from humble beginnings and rose to prominence through sheer hard work and dedication. With a keen eye for detail and a passion for creating unique designs, this designer quickly gained recognition within the fashion community. Their collections garnered attention both locally and internationally, earning them accolades and awards.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another inspiring individual in the Finnish fashion industry is a <strong>vaatemallimestari (clothing pattern master)</strong> who has mastered the art of bringing designs to life through precise pattern making. This individual plays a crucial role in ensuring that every garment fits perfectly on the wearer, combining technical skill with creative vision.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, there are those behind the scenes who make significant contributions to the Finnish fashion industry but may not always receive the recognition they deserve. These individuals include stylists, photographers, and makeup artists who work tirelessly to create visually stunning campaigns and editorials. Their expertise transforms concepts into reality, elevating brands and designers to new heights.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these success stories, it\'s important to acknowledge the unique details that make the Finnish fashion industry stand out. For instance, sustainable practices have gained traction among Finnish fashion professionals, with many designers incorporating eco-friendly materials and ethical production methods into their creations. This commitment to sustainability sets an example for the industry as a whole.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By shedding light on these success stories and unique details within the Finnish fashion industry, we can celebrate the creativity and talent that drives this thriving sector. It is through these inspiring individuals that new trends are set and innovative ideas are born, shaping the future of Finnish fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before diving headfirst into the fashion industry in Finland, just remember that you\'ll be spending more time discussing fabric patterns than actually wearing stylish clothes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Conclusion and final thoughts on pursuing a career in the fashion industry in Finland.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pursuing a career in the fashion industry in Finland offers exciting opportunities for <strong>designers and garment experts</strong> alike. The industry showcases a vibrant blend of creativity, innovation, and traditional craftsmanship. Fashion professionals have the chance to contribute to the country\'s unique aesthetic and make their mark on the global stage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finland\'s fashion industry has witnessed significant growth in recent years, with local designers gaining international recognition. This trend highlights the potential for individuals looking to establish themselves in this field. With an emphasis on sustainability and ethical production practices, Finland\'s fashion industry aligns with current global trends, making it an attractive choice for those passionate about responsible fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A career in the Finnish fashion industry requires dedication and hard work. Building a strong portfolio and networking with key players are crucial steps towards success. Education and internships also play a vital role in acquiring necessary skills and knowledge of the industry. Moreover, staying updated on emerging trends and technologies will ensure one remains competitive in this ever-evolving field.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to design-related roles, there are various other career paths within Finland\'s fashion industry. These include merchandising, marketing, retail management, patternmaking, textiles, and garment manufacturing. Exploring these diverse roles can provide individuals with a broader understanding of the industry while carving out their niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, establishing connections with established professionals or joining professional organizations can provide invaluable guidance and mentorship opportunities. Attending fashion events and exhibitions is another way to stay connected with the latest developments in both local and international markets.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, pursuing a career in the Finnish fashion industry offers immense potential for growth and fulfillment. The combination of innovative design culture, sustainable practices, and global recognition make it an attractive destination for aspiring professionals. By honing their skills, staying informed about industry trends, and nurturing valuable relationships within the sector, individuals can thrive in this dynamic field.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>FAQs: Muotialan ammatit: Suunnittelijasta vaatemallimestariksi</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>1. Q: Mitä koulutusta tarvitsen tullakseni muotisuunnittelijaksi?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Muotisuunnittelijaksi tarvitaan yleensä muotialan ammattikoulutus tai muotisuunnittelun/opiskelijaohjelman suorittaminen. Tähän sisältyy usein luovia taide- ja muotialan kursseja, kuten piirustus, kaavoitus, ompelu ja korujen/muodin suunnittelu.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>2. Q: Mikä on tyypillinen muodin mallimestarin työnkuva?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Muodin mallimestari vastaa vaatteiden toteuttamisesta suunnittelijan luomien mallien pohjalta. He valitsevat sopivat materiaalit, tekevät kaavat ja ohjaavat ompelutyötä. Mallimestari voi myös olla vastuussa mallien sovittamisesta ja viimeistelystä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>3. Q: Kuinka kauan kestää opiskella muodin suunnittelua?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Opiskeluaika riippuu oppilaitoksesta ja opiskelutavoitteista. Yleensä muodin suunnitteluun erikoistuvat koulutusohjelmat kestävät noin 2-4 vuotta. Lyhyempiin kursseihin voi osallistua myös ammattikoulutuksen aikana tai kehittää taitojaan itsenäisesti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>4. Q: Mikä on tekstiilisuunnittelijan rooli?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Tekstiilisuunnittelija suunnittelee kankaat ja muut tekstiilit, jotka käytetään muodin valmistuksessa. He luovat uniikkeja kuvioita, värejä ja kankaiden rakenteita. Tämä ammatti vaatii luovuutta, teknistä osaamista ja ymmärrystä tekstiilimateriaaleista.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>5. Q: Mitä tekee stylisti?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Stylisti on vastuussa luomaan vaatetusta, hiustyyliä ja meikkiä, jotka täydentävät tai korostavat tietyn tyylin tai kuvauksen ilmettä. He työskentelevät usein valokuvausten, muotinäytösten tai julkkisten kanssa. Stylisti tarvitsee hyvää visuaalista silmää ja trendien tuntemusta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>6. Q: Millaisia uramahdollisuuksia muotialalla on?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Muotialalla on monia uramahdollisuuksia. Näihin kuuluu suunnittelija, vaatemallimestari, stylisti, muotitoimittaja, kuvaaja, malli, puvustaja, osastonhoitaja ja vaatekaupan johtaja. Muotiala tarjoaa myös mahdollisuuksia yrittäjyyteen oman muotimerkin tai liikkeen perustamisen myötä.</p>\n<!-- /wp:paragraph -->','Muotialan ammatit Suunnittelijasta vaatemallimestariksi','','publish','closed','closed','','muotialan-ammatit-suunnittelijasta-vaatemallimestariksi','','','2023-12-11 11:09:40','2023-12-11 11:09:40','',0,'https://sadepisaroitaniitynkukkasilla.fi/?p=197',0,'post','',0),(198,1,'2023-08-24 17:58:35','2023-08-24 17:58:35','<!-- wp:paragraph -->\n<p>The fashion industry is filled with various exciting career possibilities. From being a designer to becoming a garment pattern maker, this article explores the diverse roles in the field of fashion. This introductory section will inform you about the different professions available, setting the stage for an in-depth exploration of each one.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moving forward from general information, let\'s dive deeper into these <em>muotialan ammatit (fashion industry professions)</em>. We will explore each role extensively, providing insights into their unique responsibilities and requirements. Understanding the intricacies of these careers will give aspiring professionals a clearer idea of where their passions lie.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Delving further into the world of fashion, we uncover intriguing details not yet discussed. Each profession requires specialized skills and expertise, ensuring that individuals are adept at their chosen field. By highlighting these distinctive aspects, readers can gain a comprehensive understanding of the vast opportunities within the <em>muotiala (fashion) sector</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finland\'s fashion industry might not be as hot as their saunas, but it\'s definitely heating up with designers transforming outfits faster than you can say \'Hyvää päivää!\'</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Overview of the fashion industry in Finland</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The fashion industry in Finland is a vibrant and thriving sector that offers a range of exciting opportunities. From talented designers creating unique and innovative garments to skilled <strong>vaatemallimestariks</strong> who bring these designs to life, there is no shortage of creativity in the Finnish fashion scene.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finland\'s fashion industry has gained recognition for its commitment to <strong>sustainability</strong> and <strong>ethical practices</strong>. Many Finnish fashion brands prioritize environmentally-friendly production methods and use sustainable materials. This focus on sustainability sets the industry apart and attracts conscious consumers who value both style and ethics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One notable aspect of Finland\'s fashion industry is the emphasis on <strong>traditional craftsmanship</strong>. Many Finnish designers draw inspiration from the country\'s rich heritage, incorporating traditional techniques into their modern designs. This fusion of old and new creates truly unique pieces that celebrate Finnish culture while pushing the boundaries of contemporary fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to clothing design, Finland also boasts a strong presence in other areas of the fashion industry, such as <strong>accessories</strong> and <strong>textiles</strong>. Finnish accessory designers are known for their attention to detail and innovative use of materials, creating eye-catching pieces that complement any outfit. The textile industry plays a crucial role in supporting these designers, providing high-quality fabrics that meet the highest standards.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, the fashion industry in Finland is a dynamic and diverse realm where creativity flourishes. With its commitment to sustainability, traditional craftsmanship, and innovation, it continues to make its mark on both domestic and global markets. Whether you\'re a designer looking for inspiration or someone who appreciates unique fashion, Finland has something special to offer in the world of style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the eclectic world of fashion, you can go from designer to fashion model master, creating masterpieces and strutting your stuff on the runway - talk about a career with high fashion stakes!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Description of different roles and careers in the fashion industry</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To gain a comprehensive understanding of various roles and careers in the fashion industry, dive into the vibrant world of Muotialan ammatit. Discover the brilliance and creativity behind each unique field, such as fashion designer, fashion stylist, fashion model, fashion photographer, and fashion merchandiser. Explore the diverse opportunities that await in this dynamic industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion designer</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Design Process:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Fashion designers begin by researching current fashion trends and consumer preferences. They then sketch their designs, select fabrics and colors, and create prototypes of their garments. They work closely with patternmakers to bring their designs to life, ensuring that each garment is perfectly tailored.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Industry Trends:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Fashion designers must constantly stay updated on the latest industry trends and forecasts. They attend fashion shows, read fashion magazines, and monitor social media platforms to understand what customers want. This helps them create designs that are both fashionable and commercially viable.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Collaboration:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Fashion designers often collaborate with other professionals in the industry, such as stylists, photographers, and models. They work together to showcase their designs in fashion shows or photo shoots, ensuring that the overall presentation aligns with their artistic vision.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, fashion designers may specialize in specific areas of design such as <strong>haute couture</strong> or <strong>ready-to-wear</strong>. They may also work for fashion houses or start their own labels. Overall, being a fashion designer requires a combination of creativity, technical skills, and business acumen to succeed in this competitive industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Being a fashion stylist</strong> is like being the therapist for clothes - you listen to their problems, help them find their best version, and occasionally wonder what they were thinking when they made those fashion choices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion stylist</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A <strong>Fashion stylist</strong> is an expert in curating and creating stunning looks for individuals, brands, or events. They have a keen eye for fashion and trends, and possess excellent knowledge of fabrics, colors, and styles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>They work closely with clients to understand their preferences and requirements.</li><li>Fashion stylists select appropriate clothing, accessories, and grooming options to create visually appealing looks.</li><li>They stay updated with the latest fashion trends and market demands.</li><li>Stylists coordinate outfits for photo shoots, fashion shows, red carpet events, or editorial spreads.</li><li>They collaborate with designers, photographers, makeup artists to ensure a cohesive visual presentation.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, fashion stylists also play a crucial role in enhancing the brand image of individuals or companies. Their expertise extends beyond selecting outfits; they are skilled in creating a unique personal style that reflects the client\'s personality and desired image.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion stylists aim to create impactful visual stories through their work. They meticulously choose garments and accessories that convey the desired emotions or messages. They take into account various factors such as body type, occasion, climate, cultural influences to develop well-curated looks.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Being a fashion stylist is not just about dressing up people; it requires creativity, attention to detail, and an understanding of individual aesthetics. It is a dynamic role that constantly pushes boundaries and brings dreams to life through the language of fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Being a fashion model</strong> means gracefully strutting down the runway, looking fabulous while simultaneously starving in order to fit into sample sizes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion model</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These models are not just ordinary people; they possess unique qualities that make them stand out from the crowd. With their <strong>striking features, tall stature, and well-proportioned bodies</strong>, they become walking canvases for fashion designers to display their creativity. They have <strong>impeccable grooming skills</strong> and can transform themselves into any desired look with ease.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion models are not limited to just runway shows; they also participate in various other forms of modeling such as <strong>editorial shoots, catalog modeling, or promotional events</strong>. They need to be versatile and adapt quickly to different styles of clothing or themes of campaigns while ensuring that they capture the essence of the designer\'s vision.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To excel in this challenging profession, models must maintain a high level of physical fitness and take care of their overall well-being. They follow strict diets, engage in regular exercise routines, and develop healthy habits to keep their bodies in perfect shape. Alongside physical appearance, models also focus on enhancing their posing skills, facial expressions, and body language to effectively convey emotions that align with the garments they wear.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion models often collaborate with a team of professionals including photographers, stylists, makeup artists, and hair stylists. This collaborative effort ensures that every aspect of the visual presentation complements each other flawlessly. Models communicate closely with these professionals to understand their requirements while incorporating their own creative input.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to turning heads on catwalks and magazine covers worldwide, successful fashion models may also have opportunities for endorsement deals or celebrity status. The exposure gained from being a prominent figure in the fashion industry can open doors for other career paths such as becoming an actress or television personality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In summary, fashion models are more than just exquisite faces gracing runways; they are the embodiment of style and inspiration. Their ability to transform clothing into extraordinary visual experiences is what makes them indispensable in the fashion industry. With their unique qualities, dedication, and hard work, fashion models continue to captivate audiences globally and leave a lasting impact on the world of fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Watch out for fashion photographers, they\'ll make you strike poses you never knew your body was capable of, or your spine will be forever indebted to them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion photographer</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>They work closely with <strong>designers, models, and stylists</strong> to bring their creative vision to life.</li><li>They use lighting techniques, composition, and various other elements to create stunning visual stories.</li><li>They constantly stay updated with the latest fashion trends and styles to ensure their photographs are relevant and impactful.</li><li>They have a deep understanding of <strong>fashion aesthetics</strong> and have the ability to capture the essence of a brand or designer\'s vision.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these points, fashion photographers are skilled in <strong>post-production editing techniques</strong> to enhance the colors, textures, and details in their photographs. They possess excellent <strong>communication skills</strong> to effectively direct models during photoshoots. Their work is not limited to just fashion magazines but extends to <em>advertising campaigns, editorials, lookbooks, and social media promotions</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion photographers have an exciting career that offers opportunities for travel and collaboration with industry professionals. They have the power to influence fashion trends through their creative imagery. Their photographs are a testament to their artistic expression and love for fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The role of a fashion photographer requires <strong>passion, dedication, attention to detail, technical expertise, and adaptability</strong>. They play a crucial part in bringing fashion visions into reality by creating visually appealing images that leave a lasting impression on viewers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With the ability to turn even the most fashion-challenged individuals into trend-setters, fashion merchandisers have a talent for making mannequins look better dressed than most of us.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Fashion merchandiser</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A <strong>Fashion Merchandiser</strong> is a key player in the fashion industry, responsible for ensuring that the right products are available at the right time and in the right quantities. They analyze market trends, predict consumer demand, and make important purchasing decisions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With a keen eye for fashion and a strong business sense, <strong>Fashion Merchandisers</strong> work closely with designers, manufacturers, and retailers to create successful collections and bring them to market. They collaborate with designers to develop line plans and select fabrics, colors, and styles that will appeal to customers. They also negotiate pricing and delivery terms with suppliers to ensure profitability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to their creative input, Fashion Merchandisers also have strong analytical skills. They study sales data, customer feedback, and market research reports to understand consumer behavior and identify emerging trends. Based on this information, they make recommendations on inventory levels, pricing strategies, and promotional activities.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fashion Merchandisers need excellent communication skills as they interact with various stakeholders such as buyers, suppliers, and marketing teams. They must be able to clearly articulate their vision for each collection while also understanding the needs of their target audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, Fashion Merchandisers must stay up-to-date with industry developments by attending fashion shows, trade shows, and networking events. This allows them to stay ahead of changing consumer preferences and maintain a competitive edge in the market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In summary, Fashion Merchandisers play a crucial role in the fashion industry by bridging the gap between creativity and business. Their ability to predict future trends combined with their keen eye for design helps drive sales while satisfying customer demands. With their unique blend of skills and expertise, they contribute significantly to the success of fashion brands worldwide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Qualifications and skills required for each role: because who needs a degree in fashion when you can make a statement with a pair of mismatched socks and a sarcastic smile?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Qualifications and skills required for each role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>With a career in the fashion industry, there are various roles that one can pursue. Each role requires different qualifications and skills.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For instance, a <strong>fashion designer</strong> needs to have a strong creative vision, excellent drawing skills, and a deep understanding of fabrics, colors, and patterns. They also need to stay updated on the latest fashion trends and be able to create unique designs that appeal to customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the other hand, a <strong>garment pattern maker</strong> needs to have precise measurement skills and proficiency in using pattern-making software. They are responsible for translating the designer\'s vision into actual patterns that will be used in production. Attention to detail and accuracy is crucial in this role.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moving on to the role of a <strong>sample machinist</strong>, they need to be skilled in operating sewing machines and have a good understanding of garment construction techniques. Their main responsibility is to produce prototypes or samples based on the designer\'s specifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another important role in the industry is that of a <strong>fashion stylist</strong>. This role requires knowledge of current trends, an eye for aesthetics, and excellent communication skills. Fashion stylists work closely with designers and clients to create visually appealing outfits for photoshoots and events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lastly, we have the position of a <strong>clothing production manager</strong>. This role involves overseeing the entire manufacturing process of garments - from sourcing materials to ensuring quality control during production. Strong organizational and problem-solving skills are essential for this position.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to enroll in some serious schooling if you want to go from daydreaming about designing clothes to strutting your stuff as a fashion mastermind – it\'s time to hit the books and make <strong>Anna Wintour</strong> proud!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Education and training options for aspiring professionals</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To pursue a career in Muotialan ammatit, consider exploring education and training options. Enroll in design schools and programs or join modeling agencies and training academies. These avenues can provide you with the necessary skills and knowledge to excel in the fashion industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Design schools and programs</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One key aspect of design schools and programs is their focus on providing comprehensive training in the principles of design. Students are taught fundamental concepts such as <strong>color theory, typography, layout, and composition</strong>. Through hands-on projects and assignments, they are encouraged to apply these principles in real-world scenarios, enabling them to develop a strong foundation in design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, design schools and programs often offer specialized courses that cater to specific areas of design. Whether it\'s <strong>graphic design, fashion design, interior design, or industrial design</strong>, students have the opportunity to pursue their passion and gain expertise in their chosen field. These specialized courses delve deeper into the nuances of each discipline, equipping students with the necessary skills to excel in their respective industries.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, many design schools foster a collaborative learning environment where students can engage with fellow designers and industry professionals. By participating in workshops, group projects, and industry events, students have the chance to network with like-minded individuals who share their passion for design. This not only enhances their learning experience but also opens doors to potential job opportunities in the future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to classroom-based teaching, some design schools offer internships or work placement programs that allow students to gain practical experience in a professional setting. This invaluable opportunity enables them to apply their theoretical knowledge in real-world scenarios while working alongside experienced designers. It helps bridge the gap between academia and industry by providing hands-on training that prepares students for the challenges they may encounter in their careers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, for those aspiring to pursue a career in design, attending a reputable design school or program can be beneficial on various levels. From acquiring essential skills and knowledge to building industry connections, these educational institutions provide a conducive environment for future professionals to thrive. It is within these walls that creativity flourishes, ideas are born, and aspiring designers transform into accomplished professionals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ready to strut your stuff and balance books? <strong>Modeling agencies and training academies</strong> give you the chance to walk the runway and practice your arithmetic while figuring out just how much it costs to look fierce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modeling agencies and training academies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>- <strong>Modeling agencies</strong> serve as a platform for individuals looking to pursue a career in modeling. They provide opportunities for models to showcase their talent and connect with industry professionals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- <strong>Training academies</strong> offer specialized courses and workshops to enhance the skills of aspiring professionals. These academies focus on various aspects such as grooming, posing techniques, runway walking, and photo shoots.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Both modeling agencies and training academies work hand in hand to prepare aspiring professionals for the competitive industry. They provide guidance, mentorship, and valuable industry insights to help individuals achieve their goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Collaboration between modeling agencies and training academies is crucial for aspiring professionals as it ensures a well-rounded learning experience. By combining practical training with exposure to industry opportunities, individuals can grow both personally and professionally.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is important to note that each modeling agency and training academy has its own unique approach and offerings. Therefore, it\'s essential for aspiring professionals to do thorough research before choosing the right one that aligns with their goals and aspirations. By investing time into finding the suitable modeling agency or training academy, individuals increase their chances of success in the dynamic world of fashion and entertainment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From runway to financial runway, the fashion industry offers glamorous career possibilities for those who can walk the walk and afford the shoes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Career progression and opportunities in the fashion industry</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Skill development:</strong> The fashion industry offers various avenues for skill building, such as pattern-making, textile design, and trend forecasting.</li><li><strong>Design roles:</strong> Fashion designers have the opportunity to work with renowned brands or establish their own label, showcasing their creativity on global platforms.</li><li><strong>Merchandising and marketing:</strong> Professionals skilled in fashion merchandising and marketing play a crucial role in creating successful fashion campaigns and ensuring market success.</li><li><strong>Retail management:</strong> A career in retail management allows individuals to oversee operations in fashion stores or work towards managing flagship stores of prominent brands.</li><li><strong>Entrepreneurship:</strong> The fashion industry encourages entrepreneurial ventures through online platforms or boutiques, giving individuals the freedom to showcase their unique designs.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition, fashion industry professionals can explore opportunities such as styling, costume designing for films/theater, and even sustainable fashion initiatives. With continuous learning and networking, one can pave their way towards a fulfilling career in this dynamic industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Working in the fashion industry is like being on a never-ending runway, filled with challenges and rewards that can either make you strut with confidence or stumble in your stilettos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Challenges and rewards of working in the fashion industry</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Working in the fast-paced fashion industry comes with its own set of challenges and rewards. Let\'s explore some of them:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Constantly changing trends:</strong> Keeping up with the ever-evolving fashion trends can be a challenge, but it also offers an opportunity for creative expression and innovation.</li><li><strong>Tight deadlines:</strong> Meeting strict timelines is crucial in the fashion industry. While it may be stressful at times, successfully meeting deadlines brings a sense of accomplishment.</li><li><strong>Fierce competition:</strong> The fashion industry is highly competitive, requiring individuals to constantly push their boundaries and strive for excellence. This competition drives growth and encourages continuous improvement.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>As we delve further into this dynamic field, it\'s important to note that fashion professionals face various obstacles and reap numerous rewards. For instance, adapting to changing trends can be demanding, but it allows designers to showcase their talent and experiment with unique styles. Moreover, working under tight deadlines may be nerve-wracking, yet it instills a sense of productivity and achievement when projects are completed on time. Lastly, although the fierce competition can be intense, it boosts creativity and motivates professionals to reach new heights in their careers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>\"From poverty to polyester, these Finnish fashion moguls have sewn up success and left their mark on the runway.\"</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Success stories and inspiring individuals in the Finnish fashion industry</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Finnish fashion industry is home to numerous success stories and inspiring individuals who have made their mark in the field. These individuals have not only achieved great success but have also served as a source of inspiration for aspiring fashion professionals. Through their creativity and innovation, they have brought new perspectives to the industry, pushing boundaries and setting trends.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One such success story is that of a talented designer who started from humble beginnings and rose to prominence through sheer hard work and dedication. With a keen eye for detail and a passion for creating unique designs, this designer quickly gained recognition within the fashion community. Their collections garnered attention both locally and internationally, earning them accolades and awards.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another inspiring individual in the Finnish fashion industry is a <strong>vaatemallimestari (clothing pattern master)</strong> who has mastered the art of bringing designs to life through precise pattern making. This individual plays a crucial role in ensuring that every garment fits perfectly on the wearer, combining technical skill with creative vision.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, there are those behind the scenes who make significant contributions to the Finnish fashion industry but may not always receive the recognition they deserve. These individuals include stylists, photographers, and makeup artists who work tirelessly to create visually stunning campaigns and editorials. Their expertise transforms concepts into reality, elevating brands and designers to new heights.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these success stories, it\'s important to acknowledge the unique details that make the Finnish fashion industry stand out. For instance, sustainable practices have gained traction among Finnish fashion professionals, with many designers incorporating eco-friendly materials and ethical production methods into their creations. This commitment to sustainability sets an example for the industry as a whole.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By shedding light on these success stories and unique details within the Finnish fashion industry, we can celebrate the creativity and talent that drives this thriving sector. It is through these inspiring individuals that new trends are set and innovative ideas are born, shaping the future of Finnish fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before diving headfirst into the fashion industry in Finland, just remember that you\'ll be spending more time discussing fabric patterns than actually wearing stylish clothes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Conclusion and final thoughts on pursuing a career in the fashion industry in Finland.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pursuing a career in the fashion industry in Finland offers exciting opportunities for <strong>designers and garment experts</strong> alike. The industry showcases a vibrant blend of creativity, innovation, and traditional craftsmanship. Fashion professionals have the chance to contribute to the country\'s unique aesthetic and make their mark on the global stage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finland\'s fashion industry has witnessed significant growth in recent years, with local designers gaining international recognition. This trend highlights the potential for individuals looking to establish themselves in this field. With an emphasis on sustainability and ethical production practices, Finland\'s fashion industry aligns with current global trends, making it an attractive choice for those passionate about responsible fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A career in the Finnish fashion industry requires dedication and hard work. Building a strong portfolio and networking with key players are crucial steps towards success. Education and internships also play a vital role in acquiring necessary skills and knowledge of the industry. Moreover, staying updated on emerging trends and technologies will ensure one remains competitive in this ever-evolving field.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to design-related roles, there are various other career paths within Finland\'s fashion industry. These include merchandising, marketing, retail management, patternmaking, textiles, and garment manufacturing. Exploring these diverse roles can provide individuals with a broader understanding of the industry while carving out their niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, establishing connections with established professionals or joining professional organizations can provide invaluable guidance and mentorship opportunities. Attending fashion events and exhibitions is another way to stay connected with the latest developments in both local and international markets.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, pursuing a career in the Finnish fashion industry offers immense potential for growth and fulfillment. The combination of innovative design culture, sustainable practices, and global recognition make it an attractive destination for aspiring professionals. By honing their skills, staying informed about industry trends, and nurturing valuable relationships within the sector, individuals can thrive in this dynamic field.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>FAQs: Muotialan ammatit: Suunnittelijasta vaatemallimestariksi</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>1. Q: Mitä koulutusta tarvitsen tullakseni muotisuunnittelijaksi?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Muotisuunnittelijaksi tarvitaan yleensä muotialan ammattikoulutus tai muotisuunnittelun/opiskelijaohjelman suorittaminen. Tähän sisältyy usein luovia taide- ja muotialan kursseja, kuten piirustus, kaavoitus, ompelu ja korujen/muodin suunnittelu.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>2. Q: Mikä on tyypillinen muodin mallimestarin työnkuva?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Muodin mallimestari vastaa vaatteiden toteuttamisesta suunnittelijan luomien mallien pohjalta. He valitsevat sopivat materiaalit, tekevät kaavat ja ohjaavat ompelutyötä. Mallimestari voi myös olla vastuussa mallien sovittamisesta ja viimeistelystä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>3. Q: Kuinka kauan kestää opiskella muodin suunnittelua?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Opiskeluaika riippuu oppilaitoksesta ja opiskelutavoitteista. Yleensä muodin suunnitteluun erikoistuvat koulutusohjelmat kestävät noin 2-4 vuotta. Lyhyempiin kursseihin voi osallistua myös ammattikoulutuksen aikana tai kehittää taitojaan itsenäisesti.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>4. Q: Mikä on tekstiilisuunnittelijan rooli?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Tekstiilisuunnittelija suunnittelee kankaat ja muut tekstiilit, jotka käytetään muodin valmistuksessa. He luovat uniikkeja kuvioita, värejä ja kankaiden rakenteita. Tämä ammatti vaatii luovuutta, teknistä osaamista ja ymmärrystä tekstiilimateriaaleista.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>5. Q: Mitä tekee stylisti?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Stylisti on vastuussa luomaan vaatetusta, hiustyyliä ja meikkiä, jotka täydentävät tai korostavat tietyn tyylin tai kuvauksen ilmettä. He työskentelevät usein valokuvausten, muotinäytösten tai julkkisten kanssa. Stylisti tarvitsee hyvää visuaalista silmää ja trendien tuntemusta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>6. Q: Millaisia uramahdollisuuksia muotialalla on?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Muotialalla on monia uramahdollisuuksia. Näihin kuuluu suunnittelija, vaatemallimestari, stylisti, muotitoimittaja, kuvaaja, malli, puvustaja, osastonhoitaja ja vaatekaupan johtaja. Muotiala tarjoaa myös mahdollisuuksia yrittäjyyteen oman muotimerkin tai liikkeen perustamisen myötä.</p>\n<!-- /wp:paragraph -->','Muotialan ammatit Suunnittelijasta vaatemallimestariksi','','inherit','closed','closed','','197-revision-v1','','','2023-08-24 17:58:35','2023-08-24 17:58:35','',197,'https://sadepisaroitaniitynkukkasilla.fi/?p=198',0,'revision','',0),(199,1,'2023-08-24 17:59:53','2023-08-24 17:59:53','<!-- wp:paragraph -->\n<p>As we delve into the world of fashion, it becomes evident that designing clothes for different body types requires careful consideration. Developing attire that flatters and accentuates diverse figures is a skill in its own right. Here, we explore the art of creating garments tailored to various body shapes, ensuring that everyone feels confident and stylish in their clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the human form is paramount when approaching the task of designing clothes for different body types. Each individual possesses unique features and proportions that should be taken into account during the creative process. By acknowledging these distinct characteristics, designers can create pieces that embrace and enhance an individual\'s natural physique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One crucial aspect to consider is body shape. Whether one has an hourglass figure, a pear shape, or an athletic build, each body type presents its own styling challenges. The objective is not only to celebrate diversity but also to find ways to showcase one\'s best features while minimizing areas of concern. This requires thoughtful tailoring techniques and garment silhouettes that are well-suited to each specific body shape.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, fabric choice plays a significant role in enhancing different physiques. Certain fabrics may drape beautifully on curvier bodies or add structure to leaner frames. By carefully selecting textiles with appropriate stretch and weight, designers can ensure both comfort and visual appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to unlock the secrets of body types, because dressing for success should never feel like solving a Rubik\'s Cube.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Understanding Different Body Types</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Different body types require different clothing styles to accentuate their features and flatter their figures. To cater to these diverse body shapes, it is crucial to understand the characteristics of each type.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Hourglass:</strong> This body shape features a well-defined waist with balanced upper and lower body proportions.</li><li><strong>Pear:</strong> Pear-shaped bodies have wider hips and thighs compared to their narrower shoulders.</li><li><strong>Apple:</strong> Apple-shaped bodies tend to carry weight around the midsection while having slimmer arms and legs.</li><li><strong>Rectangle:</strong> Rectangular body types have a straight up-and-down figure with minimal curves.</li><li><strong>Inverted Triangle:</strong> Inverted triangle bodies possess broader shoulders and narrower hips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Each body type requires specific attention when it comes to clothing choices. Understanding these distinctions can help you embrace your unique shape with confidence while selecting clothes that enhance your best features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, no body shape is superior or inferior; they are all equally beautiful. By understanding different body types, we can promote inclusivity in the fashion industry and celebrate diversity in beauty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With this knowledge, you can now make informed decisions when shopping for clothes based on your individual physique. There are countless fashion options available that cater specifically to your unique body type. Embrace your style and rock it with pride!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So whether you have an hourglass figure, a pear-shaped physique, an apple silhouette, a rectangular frame, or an inverted triangle shape, there is no limit to what you can wear. Dress for yourself and express your personality through fashion that makes you feel confident and comfortable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finding your body type is like trying to solve a Rubik\'s cube blindfolded - confusing, frustrating, and you\'ll probably end up just guessing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Identifying Your Body Type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So, you want to figure out your body type and design clothes that flatter your unique shape? Here are 5 key points to help you on this exciting journey:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>First, determine if you have an <strong>hourglass figure</strong>. This means your bust and hips are about the same width, while your waist is well-defined. Embrace high-waisted bottoms and tailored pieces that accentuate your curves.</li><li>If you have a <strong>rectangle body shape</strong>, your waist is not as prominent as an hourglass figure. Opt for clothing that creates the illusion of curves such as peplum tops and dresses with ruffles or embellishments.</li><li><strong>Pear-shaped</strong> individuals have wider hips and thighs compared to their bust. Highlight your upper body by wearing structured jackets or tops with interesting details. Pair them with A-line skirts or wide-leg pants to balance out proportions.</li><li><strong>Apple-shaped</strong> bodies tend to carry weight around the midsection, so it\'s important to create a balanced silhouette. Choose clothes that draw attention away from the waist like empire waist dresses or tops with V-necklines.</li><li>Lastly, if you have an <strong>inverted triangle</strong> body type, focus on elongating your lower body while minimizing the broader shoulders. Opt for bottoms in darker colors and flowy tops that add volume below the waist.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Remember, these are just general guidelines. Ultimately, it\'s about embracing your unique features and wearing what makes you feel confident!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to dressing for an apple body shape, remember: looking like an apple a day keeps the doctor away, but looking stylish keeps everyone else close at bay.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Dressing Tips for Apple Body Shape</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Apple-Shaped Body Type</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have an apple-shaped body, here are three key tips to enhance your style and flatter your figure:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Opt for tops and dresses with <strong>empire waistlines</strong> to highlight your curves and define your waist.</li><li>Choose <strong>A-line skirts and dresses</strong> that flow smoothly over your midsection, creating a balanced silhouette.</li><li>Try tops with <strong>V-necks or scoop necklines</strong> to draw attention towards your face and elongate your torso.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>For additional styling advice, remember to embrace <em>dark colors and vertical patterns</em> to create a slimming effect. Understanding these tips will help you make informed decisions when selecting clothing that suits your apple-shaped body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Did you know that the apple body shape dates back to ancient times? Throughout history, it has been celebrated in art and fashion. From ancient Greek sculptures to Renaissance paintings, the apple-shaped body has been admired for its voluptuousness and timeless beauty. By understanding the history behind this body shape, we can appreciate its allure and approach dressing for it with more confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>An apple a day keeps the fashion critics away - especially when you dress in styles that flatter your apple body shape!</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Clothing styles that flatter apple body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>- Opt for tops with <strong>V-necks</strong> or plunging necklines to draw attention away from the midsection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Choose <strong>A-line</strong> or empire-waist dresses that cinch at the smallest part of your waist and flow over the stomach area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Pick <strong>high-waisted bottoms</strong> like skirts, pants, or jeans to elongate your legs and create a more proportional look.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Layer with structured jackets or cardigans that skim over the tummy area and define the waistline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By incorporating these clothing styles, you can flatter your <strong>apple body shape</strong> while embracing your unique beauty. Remember to always choose fabrics that drape well and avoid overly tight or oversized clothing that may add unnecessary bulk.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With these guidelines in mind, you can confidently navigate through fashion choices that enhance your figure gracefully while expressing your personal style. Embrace your apple body shape, stand tall, and embrace the beautiful individuality that makes you uniquely you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dress for your apple body shape, but remember, while an apple a day keeps the doctor away, a well-put-together outfit keeps judgemental glances at bay.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dos and Don\'ts for apple body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dos and Don\'ts for Apple Body Shape</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to dressing for an apple body shape, there are certain dos and don\'ts that can help you enhance your figure and feel confident. Here\'s what you need to keep in mind:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Do</strong> opt for empire waist tops and dresses as they create the illusion of a smaller waist.</li><li><strong>Don\'t</strong> wear clingy or tight tops that draw attention to your midsection.</li><li><strong>Do</strong> choose A-line skirts and dresses that flare out at the bottom, balancing out your proportions.</li><li><strong>Don\'t</strong> wear high-waisted pants or skirts that emphasize your midsection.</li><li><strong>Do</strong> go for V-neck tops, as they elongate the torso and create a slimming effect.</li><li><strong>Don\'t</strong> wear turtlenecks or boatneck tops that make your upper body appear wider.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, it is important to consider unique details specific to the apple body shape. Accessories like belts can be used strategically to cinch the waist and create definition. Layering with structured jackets or cardigans can also add dimension without adding bulk. Remember to always choose fabrics with some stretch and avoid overly tight clothing that accentuates unwanted areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By following these dos and don\'ts, you can confidently dress according to your apple body shape, highlighting your best features while feeling comfortable in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Pear Body Shape:</strong> These tips will help you dress in a way that highlights your curves without making you look like a juicy fruit in a grocery store aisle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Dressing Tips for Pear Body Shape</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Pear Body Shape</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Opt for A-line or flared skirts and dresses to balance out the proportions of your body.</li><li>Choose tops with details such as ruffles or embellishments to draw attention upwards.</li><li>Wear dark-colored bottoms to create a slimming effect on your lower half.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>For a polished look, accessorize your outfit with statement jewelry or a belt to highlight your waist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If life gives you a pear-shaped body, turn it into a fashion sensation with these incredible clothing styles!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Clothing styles that flatter pear body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are several clothing styles that can flatter the <strong>pear body shape</strong>. This body type is characterized by a narrower upper body and wider hips and thighs. To showcase your assets and create a balanced silhouette, here are some tips to keep in mind:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Opt for A-line skirts or dresses:</strong> A-line silhouettes are perfect for pear-shaped bodies as they highlight the waist while skimming over the hips and thighs. This style creates an illusion of proportion, making your lower half appear slimmer.</li><li><strong>Embrace bootcut or wide-leg pants:</strong> When it comes to bottoms, choose styles that balance out your proportions. Bootcut or wide-leg pants with a slight flare help to visually elongate the legs and minimize the width of your hips.</li><li><strong>Layer with structured jackets:</strong> To draw attention upwards and create more visual balance, consider incorporating structured jackets into your outfits. Blazers or tailored jackets can add structure to your shoulders, making them appear broader while narrowing down your waist.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, it\'s important to avoid certain styles that may not flatter your pear shape as much. <em>Skinny jeans and pencil skirts, for instance, tend to emphasize the hips and thighs, further accentuating their width</em>. Instead, focus on highlighting your waist and adding volume or structure to your upper body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dos and Don\'ts for pear body shape:</strong> Remember, embrace your curves, but never embrace a dress that looks like a potato sack!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dos and Don\'ts for pear body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Pear Body Shape</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do\'s:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Opt for A-line dresses and skirts to highlight your waist and balance out your proportions.</li><li>Choose tops and blouses with embellishments or patterns to draw attention to your upper body.</li><li>Wear high-waisted bottoms like pants, jeans, and skirts to elongate your legs.</li><li>Select tops with V-necks or boat necklines to create the illusion of a broader shoulder line.</li><li>Experiment with statement accessories like chunky necklaces or dangly earrings to divert attention upward.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'ts:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Avoid tight-fitting bottoms that can accentuate your hips.</li><li>Steer clear of oversized or baggy tops that can make you appear shapeless.</li><li>Avoid wearing clothes with horizontal stripes on the lower half of your body as they can add volume.</li><li>Avoid pleated or gathered skirts that can add bulk around the hip area.</li><li>Avoid cropped jackets or tops that stop at the widest part of your hips, as they can make you look disproportionate.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition, choosing pants and jeans in dark colors can help minimize the appearance of wider hips. Remember to embrace your curves and wear clothes that make you feel confident and comfortable. With these dressing tips, you can enhance your pear body shape effortlessly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Hourglass Body Shape:</strong> Embrace your curves and leave the hourglass, because who needs time when you look this good!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Dressing Tips for Hourglass Body Shape</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Hourglass Body Shape</strong> can help enhance your figure and accentuate your curves. Here are six key points to consider when dressing for this body type:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Opt for fitted clothing that highlights your waist to accentuate your hourglass shape.</li><li>Choose tailored pieces that emphasize your curves without being too tight.</li><li>Experiment with wrap dresses and tops to emphasize your waistline.</li><li>Opt for high-waisted bottoms to lengthen your legs and emphasize your curves.</li><li>Consider wearing belts or cinching garments to draw attention to your waist.</li><li>Avoid oversized or shapeless clothing that may hide your figure.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these tips, it\'s essential to consider your personal style and comfort when selecting outfits. By paying attention to these details, you can create a flattering and elegant look that suits your hourglass body shape.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are numerous dressing tips for the hourglass body shape, it\'s important to remember that fashion is subjective. What works for one person may not work for another. The key is to embrace your body and experiment with different styles until you find what makes you feel confident and beautiful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One person who exemplifies the confidence of dressing for her hourglass body shape is <strong>Anna</strong>. Despite societal pressure to conform to certain beauty standards, Anna embraces her curves and dresses in a way that accentuates her figure. By finding clothes that flatter her shape and reflect her personal style, Anna radiates self-confidence and inspires others to do the same. Her story serves as a reminder that true beauty comes from within and can be enhanced by choosing the right clothing for your body type.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Avoimen reunaiset vaatteet sopivat täydellisesti sinulle, jotta voit näyttää kuin pyykkinaru, joka roikkuu keskellä tiheää viidakkoa.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Clothing styles that flatter hourglass body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Clothing styles that enhance the <strong>hourglass body shape</strong> effectively combine elegance and grace. Here are five key points to consider when choosing the perfect outfits:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Emphasize your waist</strong>: Opt for dresses or tops that cinch in at the waist to highlight your curves and create an enviable figure.</li><li><strong>Show off your assets</strong>: Choose clothing that accentuates your bust and hips, such as wrap dresses, v-neck tops, or A-line skirts.</li><li><strong>Avoid overly loose-fitting clothes</strong>: Loose-fitting garments may hide your natural curves and make you appear boxy. Instead, opt for fitted or tailored pieces that flatter your body shape.</li><li><strong>Accessorize strategically</strong>: Use belts or cinch ties to draw attention to your waistline and add interest to your ensemble without overpowering it.</li><li><strong>Experiment with different fabrics</strong>: Consider fabrics that drape well and hug your curves without adding bulk or unnecessary extra volume. Look for materials like silk, jersey, or stretchy knits.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these important guidelines, remember that personal style plays a significant role in highlighting the hourglass body shape. Experimenting with different colors, patterns, and textures allows you to express your unique personality while still embracing clothing styles that beautifully complement your figure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dress to flaunt those curves, but remember, even an hourglass can crack if you squeeze in too tight!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dos and Don\'ts for hourglass body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to dressing tips for an <strong>hourglass body shape</strong>, there are a few key <em>dos and don\'ts</em> to keep in mind. Here are three essential points to consider:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Dos:</strong><ul><li><strong>Emphasize your waist:</strong> Highlighting your natural waist is key for an hourglass figure, as it helps to accentuate your curves. Opt for belted dresses, tops, and jackets that cinch at the waist.</li><li><strong>Choose fitted silhouettes:</strong> Fitted clothing is ideal for showcasing your hourglass shape. Look for pieces that hug your curves without being too tight or restrictive.</li><li><strong>Experiment with different necklines:</strong> Different necklines can enhance and balance out your proportions. V-neck tops and dresses can draw attention upwards while scoop necks can showcase your décolletage.</li></ul></li><li><strong>Don\'ts:</strong><ul><li><strong>Avoid shapeless clothing:</strong> Shapeless or oversized garments can hide your figure instead of highlighting it. Steer clear of boxy tops or dresses without any defined waistline.</li><li><strong>Say no to high-necklines:</strong> While experimenting with necklines can be beneficial, high-necked tops or turtlenecks may make your bust appear larger than desired. Opt for lower necklines instead.</li><li><strong>Stay away from baggy bottoms:</strong> Baggy pants or skirts can diminish the definition of your curves. Opt for bottoms that fit well at the hips and then gently taper down towards the ankles.</li></ul></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, it\'s important to choose <strong>fabrics that drape well over your body</strong> without adding unnecessary bulk and avoid excessive layers that can create visual distractions from your natural figure. By following these tips, you can confidently dress in ways that enhance and flatter your hourglass body shape. Showing off your curves is easy for hourglass body shapes, just remember, if you got it, flaunt it (and maybe invest in a good belt).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Dressing Tips for Rectangle Body Shape</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vaatemallistoon suunnitteleminen eri vartalotyypeille</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sidottu suunnittelu eri vartalotyypeille on avainasemassa, kun pyritään luomaan vaatemallistoja, jotka sopivat kaikenlaisille vartaloille. Tämä koskee myös suunnittelua <strong>rectangle-vartalotyypeille</strong>. Seuraavassa on joitakin vinkkejä, jotka voivat auttaa suunnittelemaan vaatteita, jotka korostavat rectangle-vartalotyypin parhaita piirteitä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Korosta vyötäröä: Korostamalla vyötäröä luot illuusion kurvikkaammasta siluetista. Käytä vyötäröltä tiukempia vaatteita, kuten vyöllisiä mekkoja tai vartalonmyötäisiä jakkuja, jotka auttavat luomaan kurvikkuutta.</li><li>Kiinnitä huomio yläosaan: Paitojen ja yläosien avulla voit luoda tasapainoa rectangle-vartalotyypin suoran alaosan kanssa. Valitse yläosia, joissa on yksityiskohtia, kuvioita tai painatuksia, jotka houkuttelevat katseen ylöspäin.</li><li>Hameet ja mekot: Valitse hameet ja mekot, jotka luovat illuusion kurvikkaammista lanteista ja lonkista. A-linjaiset hameet, rypytetyt mekot ja levenevät helmat auttavat luomaan tasapainoa rectangle-vartalotyypin suoran yläosan kanssa.</li><li>Käytä vyötä: Vyön käyttäminen asujen kanssa auttaa määrittelemään vyötärön aluetta ja luo kurvikkuutta. Valitse vyö, joka on sopiva vartalosi mittasuhteisiin ja aseta se vyötärön korkeimmalle kohdalle.</li><li>Leikittele kerroksilla: Kerrospukeutuminen voi auttaa luomaan illuusion kurveista rectangle-vartalotyypin suoralla siluetilla. Kokeile kerroksia eri vaatekappaleiden ja asusteiden kanssa saavuttaaksesi kiinnostavan ja tasapainoisen ilmeen.</li><li>Valitse oikea pituus: Kun valitset housuja tai hameita, valitse malleja, jotka päättyvät juuri oikeaan kohtaan, jotta luot tasapainoisen ja imartelevan siluetin. Housujen tulee olla sopivan mittaisia ja hameiden pituuden tulisi korostaa jalkojasi.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Jatka lukemista, ja saat selville miten suunnitella vaatteita muille vartalotyypeille.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Rectangles may be lacking curves, but with the right clothing styles, they can still rock the runway and avoid being mistaken for a human ruler.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Clothing styles that flatter rectangle body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Opt for clothing styles with added volume or detailing on the upper body to create the illusion of curves. <strong>Ruffled tops, off-the-shoulder dresses, and statement sleeves</strong> can all add feminine flair.</li><li>Experiment with belts or cinched waistlines to define your waist and create the illusion of an hourglass figure. This can be achieved with high-waisted pants, A-line skirts, or wrap dresses.</li><li>Layering is your best friend! Adding multiple layers can add depth and dimension to your outfits. Try wearing a tailored blazer over a blouse or pairing a cardigan with a dress.</li><li>Choose tops and dresses with strategic patterns or prints that draw attention to specific areas. <strong>Vertical stripes</strong> can elongate your frame, while diagonal patterns can create movement.</li><li>Don\'t shy away from experimenting with different textures and fabrics. <strong>Textured tops, lace details, or pleated skirts</strong> can add visual interest to your outfits.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Remember, these tips are meant to guide you in finding clothing styles that enhance your natural features. Embrace your rectangle body shape and let your style speak volumes about who you are.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these considerations, it\'s important to note that choosing the right colors for your outfits can also have an impact on how they flatter your body shape. Colors such as <strong>deep jewel tones, rich neutrals, and vibrant pops of color</strong> can all draw attention to specific areas of your body while complementing your overall look. Play around with different color combinations to find what works best for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So go ahead and confidently embrace clothing styles that flatter rectangle body shapes. Remember to have fun with fashion, express yourself through your outfits, and celebrate your unique body shape. Fashion is a fantastic way to showcase who you are and feel empowered in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shape up your style game with these simple dos and don\'ts for rectangle body shapes, because the only thing that should be straight about you is your outfit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dos and Don\'ts for rectangle body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Having a <strong>rectangle body shape</strong> means that your bust, waist, and hips are all relatively equal in width. Dressing for this body shape involves creating the illusion of curves and adding definition to your waist. Here are some dos and don\'ts to keep in mind:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>DO:</strong> Wear tops with ruffles or embellishments to add volume to your bust area. This will create the appearance of curves.</li><li><strong>DO:</strong> Opt for dresses and tops with cinched waists or belts to define your waistline. This will help create an hourglass silhouette.</li><li><strong>DO:</strong> Experiment with different fabrics that drape well and add movement to your body. This can include chiffon, silk, or any fabric that adds softness.</li><li><strong>DON\'T:</strong> Choose tops or dresses that are too loose or shapeless. These can make you look boxy and hide your natural curves.</li><li><strong>DON\'T:</strong> Wear high-waisted bottoms without tucking in your top or adding a belt. This can accentuate the straightness of your figure.</li><li><strong>DON\'T:</strong> Avoid skirts or dresses with straight silhouettes as they won\'t do much to enhance your curves.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, when it comes to accessories, opt for belts, scarves, and statement jewelry that draw attention to your waistline. This will help create the illusion of more defined curves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Rectangles might not have curves, but with these dressing tips, they\'ll look sharper than a geometry student\'s pencil.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>1. How do I determine my body type?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To determine your body type, you can measure your shoulders, bust, waist, and hips. Once you have the measurements, you can compare them to the different body type categories, such as hourglass, pear, apple, rectangular, or inverted triangle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>2. What kind of clothes suit an hourglass body shape?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hourglass body shapes are well-balanced, so clothes that highlight the waistline and enhance the curves tend to suit best. Dresses that cinch at the waist, tops that accentuate the curves, and high-waisted bottoms are good options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>3. How can I dress to flatter a rectangular body shape?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have a rectangular body shape, you can create the illusion of curves by adding volume and definition to the upper and lower parts of the body. Wearing tops with ruffles, layering clothes, and choosing A-line skirts can help add curves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>4. What should I wear if I have an apple-shaped body?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For apple-shaped bodies, it\'s important to focus on elongating the torso and creating a balanced look. Choosing clothes with a V-neckline, empire-waist dresses, and A-line tops can help draw attention away from the midsection and create a more proportionate silhouette.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>5. Are there any specific clothing styles for a pear-shaped body?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With a pear-shaped body, the aim is to balance the proportions between the upper and lower body. Wearing tops with embellished details, off-the-shoulder styles, and wide-legged pants can help draw attention upward and create a more balanced look.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>6. What type of clothes suit an inverted triangle body shape?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For an inverted triangle body shape, it\'s important to create a visual balance by adding volume to the lower part of the body. Wearing A-line skirts, pants with patterns or details on the lower half, and tops that enhance the waistline can help achieve this balance.</p>\n<!-- /wp:paragraph -->','Miten suunnitella vaatteita eri vartalotyypeille','','publish','closed','closed','','miten-suunnitella-vaatteita-eri-vartalotyypeille','','','2023-12-11 11:09:39','2023-12-11 11:09:39','',0,'https://sadepisaroitaniitynkukkasilla.fi/?p=199',0,'post','',0),(200,1,'2023-08-24 17:59:53','2023-08-24 17:59:53','<!-- wp:paragraph -->\n<p>As we delve into the world of fashion, it becomes evident that designing clothes for different body types requires careful consideration. Developing attire that flatters and accentuates diverse figures is a skill in its own right. Here, we explore the art of creating garments tailored to various body shapes, ensuring that everyone feels confident and stylish in their clothing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding the human form is paramount when approaching the task of designing clothes for different body types. Each individual possesses unique features and proportions that should be taken into account during the creative process. By acknowledging these distinct characteristics, designers can create pieces that embrace and enhance an individual\'s natural physique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One crucial aspect to consider is body shape. Whether one has an hourglass figure, a pear shape, or an athletic build, each body type presents its own styling challenges. The objective is not only to celebrate diversity but also to find ways to showcase one\'s best features while minimizing areas of concern. This requires thoughtful tailoring techniques and garment silhouettes that are well-suited to each specific body shape.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additionally, fabric choice plays a significant role in enhancing different physiques. Certain fabrics may drape beautifully on curvier bodies or add structure to leaner frames. By carefully selecting textiles with appropriate stretch and weight, designers can ensure both comfort and visual appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to unlock the secrets of body types, because dressing for success should never feel like solving a Rubik\'s Cube.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Understanding Different Body Types</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Different body types require different clothing styles to accentuate their features and flatter their figures. To cater to these diverse body shapes, it is crucial to understand the characteristics of each type.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Hourglass:</strong> This body shape features a well-defined waist with balanced upper and lower body proportions.</li><li><strong>Pear:</strong> Pear-shaped bodies have wider hips and thighs compared to their narrower shoulders.</li><li><strong>Apple:</strong> Apple-shaped bodies tend to carry weight around the midsection while having slimmer arms and legs.</li><li><strong>Rectangle:</strong> Rectangular body types have a straight up-and-down figure with minimal curves.</li><li><strong>Inverted Triangle:</strong> Inverted triangle bodies possess broader shoulders and narrower hips.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Each body type requires specific attention when it comes to clothing choices. Understanding these distinctions can help you embrace your unique shape with confidence while selecting clothes that enhance your best features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, no body shape is superior or inferior; they are all equally beautiful. By understanding different body types, we can promote inclusivity in the fashion industry and celebrate diversity in beauty.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With this knowledge, you can now make informed decisions when shopping for clothes based on your individual physique. There are countless fashion options available that cater specifically to your unique body type. Embrace your style and rock it with pride!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So whether you have an hourglass figure, a pear-shaped physique, an apple silhouette, a rectangular frame, or an inverted triangle shape, there is no limit to what you can wear. Dress for yourself and express your personality through fashion that makes you feel confident and comfortable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finding your body type is like trying to solve a Rubik\'s cube blindfolded - confusing, frustrating, and you\'ll probably end up just guessing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Identifying Your Body Type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So, you want to figure out your body type and design clothes that flatter your unique shape? Here are 5 key points to help you on this exciting journey:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>First, determine if you have an <strong>hourglass figure</strong>. This means your bust and hips are about the same width, while your waist is well-defined. Embrace high-waisted bottoms and tailored pieces that accentuate your curves.</li><li>If you have a <strong>rectangle body shape</strong>, your waist is not as prominent as an hourglass figure. Opt for clothing that creates the illusion of curves such as peplum tops and dresses with ruffles or embellishments.</li><li><strong>Pear-shaped</strong> individuals have wider hips and thighs compared to their bust. Highlight your upper body by wearing structured jackets or tops with interesting details. Pair them with A-line skirts or wide-leg pants to balance out proportions.</li><li><strong>Apple-shaped</strong> bodies tend to carry weight around the midsection, so it\'s important to create a balanced silhouette. Choose clothes that draw attention away from the waist like empire waist dresses or tops with V-necklines.</li><li>Lastly, if you have an <strong>inverted triangle</strong> body type, focus on elongating your lower body while minimizing the broader shoulders. Opt for bottoms in darker colors and flowy tops that add volume below the waist.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Remember, these are just general guidelines. Ultimately, it\'s about embracing your unique features and wearing what makes you feel confident!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to dressing for an apple body shape, remember: looking like an apple a day keeps the doctor away, but looking stylish keeps everyone else close at bay.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Dressing Tips for Apple Body Shape</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Apple-Shaped Body Type</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have an apple-shaped body, here are three key tips to enhance your style and flatter your figure:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Opt for tops and dresses with <strong>empire waistlines</strong> to highlight your curves and define your waist.</li><li>Choose <strong>A-line skirts and dresses</strong> that flow smoothly over your midsection, creating a balanced silhouette.</li><li>Try tops with <strong>V-necks or scoop necklines</strong> to draw attention towards your face and elongate your torso.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>For additional styling advice, remember to embrace <em>dark colors and vertical patterns</em> to create a slimming effect. Understanding these tips will help you make informed decisions when selecting clothing that suits your apple-shaped body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Did you know that the apple body shape dates back to ancient times? Throughout history, it has been celebrated in art and fashion. From ancient Greek sculptures to Renaissance paintings, the apple-shaped body has been admired for its voluptuousness and timeless beauty. By understanding the history behind this body shape, we can appreciate its allure and approach dressing for it with more confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>An apple a day keeps the fashion critics away - especially when you dress in styles that flatter your apple body shape!</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Clothing styles that flatter apple body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>- Opt for tops with <strong>V-necks</strong> or plunging necklines to draw attention away from the midsection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Choose <strong>A-line</strong> or empire-waist dresses that cinch at the smallest part of your waist and flow over the stomach area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Pick <strong>high-waisted bottoms</strong> like skirts, pants, or jeans to elongate your legs and create a more proportional look.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Layer with structured jackets or cardigans that skim over the tummy area and define the waistline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By incorporating these clothing styles, you can flatter your <strong>apple body shape</strong> while embracing your unique beauty. Remember to always choose fabrics that drape well and avoid overly tight or oversized clothing that may add unnecessary bulk.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With these guidelines in mind, you can confidently navigate through fashion choices that enhance your figure gracefully while expressing your personal style. Embrace your apple body shape, stand tall, and embrace the beautiful individuality that makes you uniquely you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dress for your apple body shape, but remember, while an apple a day keeps the doctor away, a well-put-together outfit keeps judgemental glances at bay.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dos and Don\'ts for apple body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dos and Don\'ts for Apple Body Shape</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to dressing for an apple body shape, there are certain dos and don\'ts that can help you enhance your figure and feel confident. Here\'s what you need to keep in mind:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Do</strong> opt for empire waist tops and dresses as they create the illusion of a smaller waist.</li><li><strong>Don\'t</strong> wear clingy or tight tops that draw attention to your midsection.</li><li><strong>Do</strong> choose A-line skirts and dresses that flare out at the bottom, balancing out your proportions.</li><li><strong>Don\'t</strong> wear high-waisted pants or skirts that emphasize your midsection.</li><li><strong>Do</strong> go for V-neck tops, as they elongate the torso and create a slimming effect.</li><li><strong>Don\'t</strong> wear turtlenecks or boatneck tops that make your upper body appear wider.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, it is important to consider unique details specific to the apple body shape. Accessories like belts can be used strategically to cinch the waist and create definition. Layering with structured jackets or cardigans can also add dimension without adding bulk. Remember to always choose fabrics with some stretch and avoid overly tight clothing that accentuates unwanted areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By following these dos and don\'ts, you can confidently dress according to your apple body shape, highlighting your best features while feeling comfortable in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Pear Body Shape:</strong> These tips will help you dress in a way that highlights your curves without making you look like a juicy fruit in a grocery store aisle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Dressing Tips for Pear Body Shape</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Pear Body Shape</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Opt for A-line or flared skirts and dresses to balance out the proportions of your body.</li><li>Choose tops with details such as ruffles or embellishments to draw attention upwards.</li><li>Wear dark-colored bottoms to create a slimming effect on your lower half.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>For a polished look, accessorize your outfit with statement jewelry or a belt to highlight your waist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If life gives you a pear-shaped body, turn it into a fashion sensation with these incredible clothing styles!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Clothing styles that flatter pear body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are several clothing styles that can flatter the <strong>pear body shape</strong>. This body type is characterized by a narrower upper body and wider hips and thighs. To showcase your assets and create a balanced silhouette, here are some tips to keep in mind:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Opt for A-line skirts or dresses:</strong> A-line silhouettes are perfect for pear-shaped bodies as they highlight the waist while skimming over the hips and thighs. This style creates an illusion of proportion, making your lower half appear slimmer.</li><li><strong>Embrace bootcut or wide-leg pants:</strong> When it comes to bottoms, choose styles that balance out your proportions. Bootcut or wide-leg pants with a slight flare help to visually elongate the legs and minimize the width of your hips.</li><li><strong>Layer with structured jackets:</strong> To draw attention upwards and create more visual balance, consider incorporating structured jackets into your outfits. Blazers or tailored jackets can add structure to your shoulders, making them appear broader while narrowing down your waist.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, it\'s important to avoid certain styles that may not flatter your pear shape as much. <em>Skinny jeans and pencil skirts, for instance, tend to emphasize the hips and thighs, further accentuating their width</em>. Instead, focus on highlighting your waist and adding volume or structure to your upper body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dos and Don\'ts for pear body shape:</strong> Remember, embrace your curves, but never embrace a dress that looks like a potato sack!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dos and Don\'ts for pear body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Pear Body Shape</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do\'s:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Opt for A-line dresses and skirts to highlight your waist and balance out your proportions.</li><li>Choose tops and blouses with embellishments or patterns to draw attention to your upper body.</li><li>Wear high-waisted bottoms like pants, jeans, and skirts to elongate your legs.</li><li>Select tops with V-necks or boat necklines to create the illusion of a broader shoulder line.</li><li>Experiment with statement accessories like chunky necklaces or dangly earrings to divert attention upward.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Don\'ts:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Avoid tight-fitting bottoms that can accentuate your hips.</li><li>Steer clear of oversized or baggy tops that can make you appear shapeless.</li><li>Avoid wearing clothes with horizontal stripes on the lower half of your body as they can add volume.</li><li>Avoid pleated or gathered skirts that can add bulk around the hip area.</li><li>Avoid cropped jackets or tops that stop at the widest part of your hips, as they can make you look disproportionate.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition, choosing pants and jeans in dark colors can help minimize the appearance of wider hips. Remember to embrace your curves and wear clothes that make you feel confident and comfortable. With these dressing tips, you can enhance your pear body shape effortlessly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Hourglass Body Shape:</strong> Embrace your curves and leave the hourglass, because who needs time when you look this good!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Dressing Tips for Hourglass Body Shape</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Dressing Tips for Hourglass Body Shape</strong> can help enhance your figure and accentuate your curves. Here are six key points to consider when dressing for this body type:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Opt for fitted clothing that highlights your waist to accentuate your hourglass shape.</li><li>Choose tailored pieces that emphasize your curves without being too tight.</li><li>Experiment with wrap dresses and tops to emphasize your waistline.</li><li>Opt for high-waisted bottoms to lengthen your legs and emphasize your curves.</li><li>Consider wearing belts or cinching garments to draw attention to your waist.</li><li>Avoid oversized or shapeless clothing that may hide your figure.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these tips, it\'s essential to consider your personal style and comfort when selecting outfits. By paying attention to these details, you can create a flattering and elegant look that suits your hourglass body shape.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While there are numerous dressing tips for the hourglass body shape, it\'s important to remember that fashion is subjective. What works for one person may not work for another. The key is to embrace your body and experiment with different styles until you find what makes you feel confident and beautiful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One person who exemplifies the confidence of dressing for her hourglass body shape is <strong>Anna</strong>. Despite societal pressure to conform to certain beauty standards, Anna embraces her curves and dresses in a way that accentuates her figure. By finding clothes that flatter her shape and reflect her personal style, Anna radiates self-confidence and inspires others to do the same. Her story serves as a reminder that true beauty comes from within and can be enhanced by choosing the right clothing for your body type.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Avoimen reunaiset vaatteet sopivat täydellisesti sinulle, jotta voit näyttää kuin pyykkinaru, joka roikkuu keskellä tiheää viidakkoa.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Clothing styles that flatter hourglass body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Clothing styles that enhance the <strong>hourglass body shape</strong> effectively combine elegance and grace. Here are five key points to consider when choosing the perfect outfits:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Emphasize your waist</strong>: Opt for dresses or tops that cinch in at the waist to highlight your curves and create an enviable figure.</li><li><strong>Show off your assets</strong>: Choose clothing that accentuates your bust and hips, such as wrap dresses, v-neck tops, or A-line skirts.</li><li><strong>Avoid overly loose-fitting clothes</strong>: Loose-fitting garments may hide your natural curves and make you appear boxy. Instead, opt for fitted or tailored pieces that flatter your body shape.</li><li><strong>Accessorize strategically</strong>: Use belts or cinch ties to draw attention to your waistline and add interest to your ensemble without overpowering it.</li><li><strong>Experiment with different fabrics</strong>: Consider fabrics that drape well and hug your curves without adding bulk or unnecessary extra volume. Look for materials like silk, jersey, or stretchy knits.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these important guidelines, remember that personal style plays a significant role in highlighting the hourglass body shape. Experimenting with different colors, patterns, and textures allows you to express your unique personality while still embracing clothing styles that beautifully complement your figure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dress to flaunt those curves, but remember, even an hourglass can crack if you squeeze in too tight!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dos and Don\'ts for hourglass body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to dressing tips for an <strong>hourglass body shape</strong>, there are a few key <em>dos and don\'ts</em> to keep in mind. Here are three essential points to consider:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Dos:</strong><ul><li><strong>Emphasize your waist:</strong> Highlighting your natural waist is key for an hourglass figure, as it helps to accentuate your curves. Opt for belted dresses, tops, and jackets that cinch at the waist.</li><li><strong>Choose fitted silhouettes:</strong> Fitted clothing is ideal for showcasing your hourglass shape. Look for pieces that hug your curves without being too tight or restrictive.</li><li><strong>Experiment with different necklines:</strong> Different necklines can enhance and balance out your proportions. V-neck tops and dresses can draw attention upwards while scoop necks can showcase your décolletage.</li></ul></li><li><strong>Don\'ts:</strong><ul><li><strong>Avoid shapeless clothing:</strong> Shapeless or oversized garments can hide your figure instead of highlighting it. Steer clear of boxy tops or dresses without any defined waistline.</li><li><strong>Say no to high-necklines:</strong> While experimenting with necklines can be beneficial, high-necked tops or turtlenecks may make your bust appear larger than desired. Opt for lower necklines instead.</li><li><strong>Stay away from baggy bottoms:</strong> Baggy pants or skirts can diminish the definition of your curves. Opt for bottoms that fit well at the hips and then gently taper down towards the ankles.</li></ul></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, it\'s important to choose <strong>fabrics that drape well over your body</strong> without adding unnecessary bulk and avoid excessive layers that can create visual distractions from your natural figure. By following these tips, you can confidently dress in ways that enhance and flatter your hourglass body shape. Showing off your curves is easy for hourglass body shapes, just remember, if you got it, flaunt it (and maybe invest in a good belt).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Dressing Tips for Rectangle Body Shape</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Vaatemallistoon suunnitteleminen eri vartalotyypeille</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sidottu suunnittelu eri vartalotyypeille on avainasemassa, kun pyritään luomaan vaatemallistoja, jotka sopivat kaikenlaisille vartaloille. Tämä koskee myös suunnittelua <strong>rectangle-vartalotyypeille</strong>. Seuraavassa on joitakin vinkkejä, jotka voivat auttaa suunnittelemaan vaatteita, jotka korostavat rectangle-vartalotyypin parhaita piirteitä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Korosta vyötäröä: Korostamalla vyötäröä luot illuusion kurvikkaammasta siluetista. Käytä vyötäröltä tiukempia vaatteita, kuten vyöllisiä mekkoja tai vartalonmyötäisiä jakkuja, jotka auttavat luomaan kurvikkuutta.</li><li>Kiinnitä huomio yläosaan: Paitojen ja yläosien avulla voit luoda tasapainoa rectangle-vartalotyypin suoran alaosan kanssa. Valitse yläosia, joissa on yksityiskohtia, kuvioita tai painatuksia, jotka houkuttelevat katseen ylöspäin.</li><li>Hameet ja mekot: Valitse hameet ja mekot, jotka luovat illuusion kurvikkaammista lanteista ja lonkista. A-linjaiset hameet, rypytetyt mekot ja levenevät helmat auttavat luomaan tasapainoa rectangle-vartalotyypin suoran yläosan kanssa.</li><li>Käytä vyötä: Vyön käyttäminen asujen kanssa auttaa määrittelemään vyötärön aluetta ja luo kurvikkuutta. Valitse vyö, joka on sopiva vartalosi mittasuhteisiin ja aseta se vyötärön korkeimmalle kohdalle.</li><li>Leikittele kerroksilla: Kerrospukeutuminen voi auttaa luomaan illuusion kurveista rectangle-vartalotyypin suoralla siluetilla. Kokeile kerroksia eri vaatekappaleiden ja asusteiden kanssa saavuttaaksesi kiinnostavan ja tasapainoisen ilmeen.</li><li>Valitse oikea pituus: Kun valitset housuja tai hameita, valitse malleja, jotka päättyvät juuri oikeaan kohtaan, jotta luot tasapainoisen ja imartelevan siluetin. Housujen tulee olla sopivan mittaisia ja hameiden pituuden tulisi korostaa jalkojasi.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Jatka lukemista, ja saat selville miten suunnitella vaatteita muille vartalotyypeille.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Rectangles may be lacking curves, but with the right clothing styles, they can still rock the runway and avoid being mistaken for a human ruler.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Clothing styles that flatter rectangle body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Opt for clothing styles with added volume or detailing on the upper body to create the illusion of curves. <strong>Ruffled tops, off-the-shoulder dresses, and statement sleeves</strong> can all add feminine flair.</li><li>Experiment with belts or cinched waistlines to define your waist and create the illusion of an hourglass figure. This can be achieved with high-waisted pants, A-line skirts, or wrap dresses.</li><li>Layering is your best friend! Adding multiple layers can add depth and dimension to your outfits. Try wearing a tailored blazer over a blouse or pairing a cardigan with a dress.</li><li>Choose tops and dresses with strategic patterns or prints that draw attention to specific areas. <strong>Vertical stripes</strong> can elongate your frame, while diagonal patterns can create movement.</li><li>Don\'t shy away from experimenting with different textures and fabrics. <strong>Textured tops, lace details, or pleated skirts</strong> can add visual interest to your outfits.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Remember, these tips are meant to guide you in finding clothing styles that enhance your natural features. Embrace your rectangle body shape and let your style speak volumes about who you are.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to these considerations, it\'s important to note that choosing the right colors for your outfits can also have an impact on how they flatter your body shape. Colors such as <strong>deep jewel tones, rich neutrals, and vibrant pops of color</strong> can all draw attention to specific areas of your body while complementing your overall look. Play around with different color combinations to find what works best for you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So go ahead and confidently embrace clothing styles that flatter rectangle body shapes. Remember to have fun with fashion, express yourself through your outfits, and celebrate your unique body shape. Fashion is a fantastic way to showcase who you are and feel empowered in your own skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shape up your style game with these simple dos and don\'ts for rectangle body shapes, because the only thing that should be straight about you is your outfit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Dos and Don\'ts for rectangle body shape</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Having a <strong>rectangle body shape</strong> means that your bust, waist, and hips are all relatively equal in width. Dressing for this body shape involves creating the illusion of curves and adding definition to your waist. Here are some dos and don\'ts to keep in mind:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>DO:</strong> Wear tops with ruffles or embellishments to add volume to your bust area. This will create the appearance of curves.</li><li><strong>DO:</strong> Opt for dresses and tops with cinched waists or belts to define your waistline. This will help create an hourglass silhouette.</li><li><strong>DO:</strong> Experiment with different fabrics that drape well and add movement to your body. This can include chiffon, silk, or any fabric that adds softness.</li><li><strong>DON\'T:</strong> Choose tops or dresses that are too loose or shapeless. These can make you look boxy and hide your natural curves.</li><li><strong>DON\'T:</strong> Wear high-waisted bottoms without tucking in your top or adding a belt. This can accentuate the straightness of your figure.</li><li><strong>DON\'T:</strong> Avoid skirts or dresses with straight silhouettes as they won\'t do much to enhance your curves.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, when it comes to accessories, opt for belts, scarves, and statement jewelry that draw attention to your waistline. This will help create the illusion of more defined curves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Rectangles might not have curves, but with these dressing tips, they\'ll look sharper than a geometry student\'s pencil.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>1. How do I determine my body type?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To determine your body type, you can measure your shoulders, bust, waist, and hips. Once you have the measurements, you can compare them to the different body type categories, such as hourglass, pear, apple, rectangular, or inverted triangle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>2. What kind of clothes suit an hourglass body shape?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hourglass body shapes are well-balanced, so clothes that highlight the waistline and enhance the curves tend to suit best. Dresses that cinch at the waist, tops that accentuate the curves, and high-waisted bottoms are good options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>3. How can I dress to flatter a rectangular body shape?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have a rectangular body shape, you can create the illusion of curves by adding volume and definition to the upper and lower parts of the body. Wearing tops with ruffles, layering clothes, and choosing A-line skirts can help add curves.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>4. What should I wear if I have an apple-shaped body?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For apple-shaped bodies, it\'s important to focus on elongating the torso and creating a balanced look. Choosing clothes with a V-neckline, empire-waist dresses, and A-line tops can help draw attention away from the midsection and create a more proportionate silhouette.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>5. Are there any specific clothing styles for a pear-shaped body?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With a pear-shaped body, the aim is to balance the proportions between the upper and lower body. Wearing tops with embellished details, off-the-shoulder styles, and wide-legged pants can help draw attention upward and create a more balanced look.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>6. What type of clothes suit an inverted triangle body shape?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For an inverted triangle body shape, it\'s important to create a visual balance by adding volume to the lower part of the body. Wearing A-line skirts, pants with patterns or details on the lower half, and tops that enhance the waistline can help achieve this balance.</p>\n<!-- /wp:paragraph -->','Miten suunnitella vaatteita eri vartalotyypeille','','inherit','closed','closed','','199-revision-v1','','','2023-08-24 17:59:53','2023-08-24 17:59:53','',199,'https://sadepisaroitaniitynkukkasilla.fi/?p=200',0,'revision','',0),(201,1,'2023-08-24 18:01:07','2023-08-24 18:01:07','<!-- wp:paragraph -->\n<p>Creating a unique fashion collection requires a careful blend of <strong>creativity and originality</strong>. To stand out in the fashion industry, designers must think outside the box and push boundaries. By combining <strong>innovative designs, high-quality materials, and thoughtful details</strong>, fashion enthusiasts can create a collection that truly sets them apart.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Every successful fashion collection starts with a clear vision and concept. Designers must carefully choose their inspiration and theme, which will serve as the foundation for their entire collection. Whether it\'s drawing inspiration from nature, art, or historical eras, the concept should be <strong>unique and captivating</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next comes the design process. This is where designers bring their ideas to life on paper or through digital software. Attention to detail is crucial during this stage, as every piece should reflect the designer\'s vision while maintaining functionality and wearability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once the designs are finalized, it\'s time to select materials. Choosing <strong>high-quality fabrics and materials</strong> ensures that the finished pieces not only look stunning but also feel luxurious. Experimenting with different textures and finishes can add depth and uniqueness to the collection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another key aspect of creating a standout fashion collection is paying attention to the little details. Embellishments like <strong>embroidery, beading, or hand-painted details</strong> can elevate a piece from ordinary to extraordinary. These intricate touches showcase the designer\'s craftsmanship and attention to detail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To truly make a mark in the fashion industry, designers must also consider sustainability. Incorporating eco-friendly practices into each step of the production process shows a commitment to ethical fashion. From sourcing sustainable materials to reducing waste in production, creating an environmentally conscious collection reflects a forward-thinking mindset.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Creating a unique fashion collection is like trying to find a parking spot in a busy city - it requires patience, creativity, and the ability to squeeze in a little bit of madness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Understanding the concept of a unique fashion collection</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To begin with, research is essential. Look for inspiration from various sources such as art, nature, or even different cultures. This will help you develop your own unique vision for the collection. Experiment with different fabrics, textures, and colors to give your designs a distinctive touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next, pay attention to detail. Small elements like buttons, zippers, or embroidery can add an extra level of uniqueness to your collection. Don\'t be afraid to take risks and incorporate unconventional materials or techniques into your designs. This will set your collection apart from others in the market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Collaboration is also key in creating a unique fashion collection. Work closely with other professionals such as pattern makers, seamstresses, and stylists to bring your vision to life. Their expertise and input can enhance the overall aesthetic and quality of your collection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lastly, stay true to yourself and your brand identity. Your unique fashion collection should reflect your personal style and values. Don\'t try to imitate others or follow every trend blindly. Instead, focus on creating pieces that are authentic and timeless.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Don\'t just follow fashion trends, research them until you\'re convinced that wearing paper bags is the next big thing.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Researching current fashion trends and styles</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In today\'s fast-paced world, fashion trends are constantly evolving. Keeping up with these changes requires staying informed and continuously researching new styles. Designers can explore various sources such as <strong>fashion magazines, websites, social media platforms</strong>, and even street style to identify emerging trends. By immersing themselves in the latest fashion inspirations, they can discover new color palettes, fabrics, silhouettes, and patterns that can inform their collections.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, attending fashion events like runway shows or trade fairs allows designers to witness firsthand the newest designs and techniques in the industry. Networking with other professionals also provides an opportunity to exchange ideas and knowledge about upcoming trends.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While researching current fashion trends is essential, it is equally important for designers to stay true to their creative vision. The key is to find a balance between following trends and expressing one\'s unique style. This involves <em>infusing personal creativity</em> into the design process by experimenting with different elements such as texture combinations or unexpected details that make the collection stand out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding your target audience is key - after all, you can\'t just throw together a collection and hope it lands, unless you\'re aiming for \'laundry day chic\'.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Identifying your target audience and their preferences</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying and understanding your target audience\'s preferences is crucial in creating a unique fashion collection. By analyzing their tastes, style, and purchasing behavior, you can tailor your designs to meet their expectations and stand out in the competitive market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To begin with, conduct thorough market research to gain insights into your potential customers. Look beyond basic demographics and dig deeper into their lifestyle, interests, and values. This will help you create a more accurate profile of your target audience and identify their specific fashion preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once you have a clear understanding of your target audience, focus on developing a strong brand identity that resonates with them. Your collection should reflect their desires, aspirations, and individuality. Consider their preferred colors, patterns, fabrics, and silhouettes to create garments that they would gravitate towards.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another important aspect is to stay updated with current trends while maintaining authenticity. Strive for innovation by infusing your designs with unique elements that set them apart from other collections in the market. This could be through intricate embellishments or unexpected combinations of materials.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, consider collaborating with influencers or celebrities who have a strong influence on your target audience. Their endorsement can significantly boost the visibility and credibility of your collection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember that constant communication with your audience is key. Engage with them through social media platforms or organize focus groups to gather feedback on your designs. This will not only show that you value their opinions but also help you refine your collection based on their preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By identifying your target audience\'s preferences accurately and translating them into a captivating fashion collection, you can establish yourself as a sought-after brand in the industry. Stay true to your vision while adapting to changing trends to ensure long-term success in the competitive fashion world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Who needs a theme when you can just throw together a random assortment of clothes and call it \'abstract fashion\'?</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Creating a cohesive theme or concept for your collection</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to sketching and designing different garments, remember that even a <strong>stick figure</strong> can look fashionable in the right outfit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sketching and designing different garments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To create a unique fashion collection, sketching and designing different garments is crucial. Here\'s a <strong>4-step guide</strong> to help you in the process:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Inspiration</strong>: Find inspiration from various sources such as art, nature, or even your personal experiences. Let your creativity flow and gather ideas to develop unique concepts.</li><li><strong>Sketching</strong>: Start by sketching your ideas on paper or using design software. Focus on defining the shapes, silhouettes, and details of each garment. Experiment with different styles and cuts to bring your vision to life.</li><li><strong>Material Selection</strong>: Once you have finalized your sketches, choose suitable materials that complement the design aesthetics and ensure comfort for the wearer. Consider factors like fabric weight, texture, color, and patterns while making your selections.</li><li><strong>Prototyping and Refining</strong>: Transform your sketches into physical prototypes by creating pattern templates and assembling them using appropriate sewing techniques. Continuously refine the fit and functionality of each garment through multiple iterations until you achieve perfection.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these steps, it\'s essential to pay attention to intricate details like buttons, zippers, trims, and embellishments that enhance the overall appeal of your collection. Remember to stay true to your unique style throughout the design process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to create a fashion collection that will make heads turn faster than an old lady spotting a sale - it\'s time to choose fabrics and materials!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Selecting appropriate fabrics and materials</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Selecting the perfect fabrics and materials for your fashion collection is a crucial step in creating a unique and stylish line. The right choice of materials can enhance the overall look and feel of your designs, making them stand out from the crowd.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to selecting fabrics, consider factors such as texture, weight, and durability. A mix of different textures can add depth and visual interest to your collection. Opt for high-quality materials that not only look good but also have a long lifespan. This way, your designs will not only be fashionable but also durable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to textures, colors play a vital role in creating a cohesive collection. Experiment with different color palettes to find combinations that reflect your brand\'s aesthetic. Remember to choose colors that complement each other and enhance the overall theme of your collection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, don\'t forget about sustainability when selecting fabrics and materials. Conscious consumers are increasingly concerned about eco-friendly fashion choices. Consider using <em>organic or recycled materials</em> to align with this growing trend.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lastly, pay attention to the feel and comfort of the fabrics you select. Think about how they will interact with the wearer\'s skin and body shape. Choose materials that offer breathability and flexibility without sacrificing style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Collaborating with manufacturers or suppliers is like being in a dysfunctional relationship - sometimes you can\'t help but wonder if their screw-ups are intentional.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Collaborating with manufacturers or suppliers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Collaboration with manufacturers or suppliers is key in creating a unique fashion collection. By working closely together, <strong>designers can ensure that their vision is translated into reality</strong>. Effective communication and coordination with suppliers result in high-quality materials and finishes. This collaboration fosters innovation and enables the creation of cutting-edge designs. Additionally, it allows for efficient production processes and timely delivery of products to the market. Collaborating with manufacturers or suppliers is vital in achieving success in the fashion industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, when collaborating with manufacturers or suppliers, it is crucial to establish a strong partnership based on mutual trust and understanding. Building a rapport with these stakeholders enables open dialogue, facilitating the exchange of ideas and expertise. Through regular meetings and discussions, designers can gain valuable insights into the manufacturing process, materials availability, and technical capabilities. Such collaboration ensures that design concepts are executed flawlessly while maintaining cost-effectiveness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, by involving manufacturers or suppliers early on in the design process, designers can leverage their expertise to overcome potential challenges. These collaborators can offer suggestions on material selection, prototype development, and production techniques. Their knowledge and experience contribute to enhancing the overall quality of the fashion collection. Additionally, manufacturers or suppliers may have connections to specialized artisans or craftsmen who can add unique details or embellishments to the garments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Creating prototypes and samples: Where fashion dreams go to die and take on physical form.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Creating prototypes and samples</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here is a <strong>6-step guide to creating prototypes and samples</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Sketch and design:</strong> Begin by sketching your designs on paper or using digital software. This helps visualize your ideas and decide on the overall look of your collection.</li><li><strong>Material selection:</strong> Choose fabrics and materials that align with your design concept. Consider factors such as durability, texture, and color when making your selections.</li><li><strong>Pattern making:</strong> Create patterns based on your designs. These patterns serve as templates for cutting out fabric pieces. Accuracy is crucial in ensuring a well-fitting garment.</li><li><strong>Cutting and stitching:</strong> Use the patterns to cut out fabric pieces, then stitch them together according to the design specifications. This step allows you to see how the garments take shape.</li><li><strong>Fitting and adjustments:</strong> Try on the prototypes yourself or use fit models to assess the fit and comfort of the garments. Make any necessary adjustments to ensure an optimal fit.</li><li><strong>Critical evaluation:</strong> Conduct a thorough evaluation of each prototype, considering aspects like quality, aesthetics, functionality, and market appeal. This evaluation helps refine your designs before moving forward with mass production.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Keeping these steps in mind, you can create prototypes and samples that reflect your unique fashion vision without compromising quality or creativity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition, paying attention to details such as stitching techniques, seam finishes, and small embellishments can add an extra touch of uniqueness to your collection while maintaining high standards of craftsmanship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Testing and modifying the designs: Because nothing says \'unique fashion\' like accidentally creating a dress that doubles as a hammock for cats.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Testing and modifying the designs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Analyze the concept: Start by carefully examining the concept behind your designs. Understand the inspiration, aesthetic, and intended message of each piece. This will help you evaluate whether your designs successfully convey the desired emotions and ideas.</li><li>Test for functionality: Next, put your designs to the test for functionality. Consider factors such as comfort, movement, and practicality. This step ensures that your creations are not only visually appealing but also wearable and functional in real-life situations.</li><li>Gather feedback: Seek feedback from trusted individuals, such as fellow designers or industry professionals. Their fresh perspective can provide valuable insights into the strengths and weaknesses of your designs. Additionally, consider conducting focus groups or surveys to gather feedback from potential customers.</li><li>Iterate and improve: Based on the feedback received, make necessary modifications to enhance your designs. Be open to constructive criticism and willing to make changes that better align with the preferences of your target audience.</li><li>Re-evaluate before production: Before finalizing your designs for production, take another critical look at each piece. Ensure that all modifications have been implemented seamlessly and harmoniously within the collection as a whole.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Overall, testing and modifying your fashion designs allows you to refine and perfect them before they reach the market. By paying careful attention to every detail and gathering valuable feedback, you can create a truly exceptional fashion collection tailored to meet the needs and desires of your target audience without compromising on creativity or originality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the world of fashion, finalizing a collection is like saying goodbye to all your favorite clothes at once, it\'s a bittersweet farewell filled with sequins and tears.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Finalizing the collection and preparing for production</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Curate the designs:</strong> Carefully review all the designs and select the ones that best align with your vision and target audience. Consider factors like style, uniqueness, market trends, and practicality.</li><li><strong>Refine the details:</strong> Pay attention to every little detail of your chosen designs. Make necessary adjustments, such as modifying patterns, choosing suitable fabrics, or altering color schemes. This step ensures that your collection is cohesive and visually appealing.</li><li><strong>Create technical specifications:</strong> Transform your creative ideas into detailed technical specifications that manufacturers can understand. Include accurate measurements, fabric requirements, construction techniques, and any special instructions for each design.</li><li><strong>Communicate with suppliers:</strong> Establish clear communication channels with your suppliers and manufacturers. Provide them with the finalized designs and technical specifications so they can accurately produce your collection. Regularly follow up with them to ensure progress and address any concerns that may arise.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these steps, it is important to consider factors like quality control, budgeting, and timelines when finalizing the collection and preparing for production. By meticulously reviewing each design, refining their details, creating precise technical specifications, and maintaining effective communication with suppliers, you can bring your unique fashion collection to life efficiently.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get your fashion collection noticed by putting it on display in a haunted house - the ghosts will be the best endorsers you could ever ask for!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Marketing and promoting your unique fashion collection</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Create a <strong>strong brand identity</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Develop a unique brand image that aligns with your collection\'s aesthetic. This includes designing a memorable logo, selecting consistent color schemes, and crafting compelling brand messaging.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Build an online presence</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Utilize social media platforms and e-commerce websites to promote your collection. Regularly post high-quality images and engaging content that showcases your garments in different settings and on diverse models.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Collaborate with influencers</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Partnering with influential individuals in the fashion industry can significantly boost your collection\'s visibility. Seek collaborations with relevant bloggers, Instagrammers, or celebrities who resonate with your brand\'s values and target audience.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Participate in fashion events</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Showcase your collection at fashion shows, trade fairs, or pop-up shops to gain exposure within the industry. Connect with fashion event organizers and ensure that your display reflects the uniqueness of your designs.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>It is important to note that successful marketing goes beyond these points. Consider leveraging customer feedback, offering personalized experiences, and continuously adapting your strategies to stay ahead in the ever-evolving fashion landscape. By doing so, you can create a buzz around your unique fashion collection and establish a strong presence in the market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They say clothes make the man, so in order to truly make a statement, make sure your fashion collection screams \'<strong>I\'m all dressed up with nowhere to go!</strong>\'</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Launching and showcasing the collection</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure the success of your showcase, pay attention to every detail. From selecting models that embody the spirit of your collection to curating music that sets the mood, every aspect must be meticulously considered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consider collaborating with <strong>stylists</strong> and <strong>makeup artists</strong> who understand your vision and can bring it to life. Additionally, think about incorporating interactive elements into your showcase to engage your audience on a deeper level. This could include installations, multimedia displays, or even live performances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, leverage digital platforms to extend the reach of your collection beyond the confines of physical events. Utilize <strong>social media channels</strong> to tease glimpses of your designs prior to launch and provide behind-the-scenes access during the showcase itself. Interactive features such as live streaming or virtual reality experiences can offer a unique perspective for those unable to attend in person.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Note: The previous response has been generated based on general knowledge on the topic \'launching and showcasing a fashion collection\' without having any prior access to domain-specific information or research materials aside from what\'s provided above.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, even Picasso had critics, but at least he didn\'t have to deal with fashion police.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Receiving feedback and making improvements</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Listen to your audience: Gather feedback actively from your target market, whether it\'s through surveys or focus groups. Pay attention to their preferences and understand their needs.</li><li>Analyze constructive criticism: Embrace feedback that points out areas for improvement. Use it as an opportunity to refine your designs and enhance your collection.</li><li>Experiment and evolve: Act upon the feedback received by incorporating changes into your designs. Embrace innovation and adapt to the evolving trends of the fashion industry.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, collaborating with industry experts can provide valuable insights on enhancing your collection\'s uniqueness and appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By being open to feedback, implementing necessary changes, and staying attuned to fashion trends, you\'ll continuously improve your collection\'s distinctiveness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ready to rock the fashion world with your own unique collection? Just remember, fashion may change, but style... well, that\'s forever stamped on your credit card bill.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Conclusion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Creating a unique fashion collection requires careful planning, creativity, and attention to detail. By incorporating innovative design elements, selecting high-quality materials, and considering customer preferences, you can develop a collection that stands out from the rest. Additionally, collaborating with talented designers and utilizing unconventional sources of inspiration can further enhance the uniqueness of your collection. Remember to stay true to your brand\'s identity and vision throughout the process. With these strategies in mind, you can create a fashion collection that is truly one-of-a-kind.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>FAQs about creating a unique fashion collection:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Mitä tarvitaan ainutlaatuisen muotikokoelman luomiseksi?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ainutlaatuisen muotikokoelman luomiseksi tarvitaan luovaa visiota, trenditietoisuutta, korkealaatuisia materiaaleja, hyvää suunnittelua ja ammattitaitoa valmistustyössä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miten voin saada inspiraatiota luodakseni ainutlaatuisen muotikokoelman?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Inspiraatioa voi saada eri lähteistä, kuten muotinäytöksistä, katumuodista, luonnosta, taiteesta, ja matkoilta eri kulttuureihin. Kannattaa myös seurata muotialan trendejä ja tutustua aiempien suunnittelijoiden töihin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Kuinka voin erottua massasta muotikokoelmani kanssa?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Voit erottua massasta muotikokoelmallasi käyttämällä ainutlaatuisia yksityiskohtia, kuten omaperäisiä kankaita, leikkauksia, värejä tai koristeita. Hyvä brändäys ja markkinointi auttavat myös erottumaan massasta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Kuinka tärkeää on tutkia kohdeyleisöäni ennen muotikokoelman luomista?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Kohdeyleisön tutkiminen on erittäin tärkeää, jotta voit suunnitella kokoelman, joka miellyttää ja puhuttelee juuri sinun kohdeyleisöäsi. Ymmärtämällä heidän mieltymyksiään, tarpeitaan ja elämäntyyliään voit suunnitella heille sopivia vaatteita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Kuinka valitsen oikeat materiaalit muotikokoelmaani?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Materiaalien valinnassa tulee ottaa huomioon muun muassa vaatteiden käyttötarkoitus, suunnitteluidea ja budjetti. Korkealaatuiset materiaalit, kuten luonnonkuidut, lisäävät usein kokoelman arvoa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miten huolehdin siitä, että muotikokoelmani on ajaton eikä vain hetkellinen trendi?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ajattomuus voidaan saavuttaa suunnittelemalla vaatteita, jotka kestävät aikaa sekä muodin että laadun suhteen. Vältä liiallisia trendikkäitä yksityiskohtia ja panosta klassisiin malleihin, jotka eivät mene nopeasti pois muodista.</p>\n<!-- /wp:paragraph -->','Kuinka luoda ainutlaatuinen muotikokoelma','','publish','closed','closed','','kuinka-luoda-ainutlaatuinen-muotikokoelma','','','2023-12-11 11:09:39','2023-12-11 11:09:39','',0,'https://sadepisaroitaniitynkukkasilla.fi/?p=201',0,'post','',0),(202,1,'2023-08-24 18:01:07','2023-08-24 18:01:07','<!-- wp:paragraph -->\n<p>Creating a unique fashion collection requires a careful blend of <strong>creativity and originality</strong>. To stand out in the fashion industry, designers must think outside the box and push boundaries. By combining <strong>innovative designs, high-quality materials, and thoughtful details</strong>, fashion enthusiasts can create a collection that truly sets them apart.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Every successful fashion collection starts with a clear vision and concept. Designers must carefully choose their inspiration and theme, which will serve as the foundation for their entire collection. Whether it\'s drawing inspiration from nature, art, or historical eras, the concept should be <strong>unique and captivating</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next comes the design process. This is where designers bring their ideas to life on paper or through digital software. Attention to detail is crucial during this stage, as every piece should reflect the designer\'s vision while maintaining functionality and wearability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once the designs are finalized, it\'s time to select materials. Choosing <strong>high-quality fabrics and materials</strong> ensures that the finished pieces not only look stunning but also feel luxurious. Experimenting with different textures and finishes can add depth and uniqueness to the collection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another key aspect of creating a standout fashion collection is paying attention to the little details. Embellishments like <strong>embroidery, beading, or hand-painted details</strong> can elevate a piece from ordinary to extraordinary. These intricate touches showcase the designer\'s craftsmanship and attention to detail.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To truly make a mark in the fashion industry, designers must also consider sustainability. Incorporating eco-friendly practices into each step of the production process shows a commitment to ethical fashion. From sourcing sustainable materials to reducing waste in production, creating an environmentally conscious collection reflects a forward-thinking mindset.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Creating a unique fashion collection is like trying to find a parking spot in a busy city - it requires patience, creativity, and the ability to squeeze in a little bit of madness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Understanding the concept of a unique fashion collection</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To begin with, research is essential. Look for inspiration from various sources such as art, nature, or even different cultures. This will help you develop your own unique vision for the collection. Experiment with different fabrics, textures, and colors to give your designs a distinctive touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next, pay attention to detail. Small elements like buttons, zippers, or embroidery can add an extra level of uniqueness to your collection. Don\'t be afraid to take risks and incorporate unconventional materials or techniques into your designs. This will set your collection apart from others in the market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Collaboration is also key in creating a unique fashion collection. Work closely with other professionals such as pattern makers, seamstresses, and stylists to bring your vision to life. Their expertise and input can enhance the overall aesthetic and quality of your collection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lastly, stay true to yourself and your brand identity. Your unique fashion collection should reflect your personal style and values. Don\'t try to imitate others or follow every trend blindly. Instead, focus on creating pieces that are authentic and timeless.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Don\'t just follow fashion trends, research them until you\'re convinced that wearing paper bags is the next big thing.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Researching current fashion trends and styles</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In today\'s fast-paced world, fashion trends are constantly evolving. Keeping up with these changes requires staying informed and continuously researching new styles. Designers can explore various sources such as <strong>fashion magazines, websites, social media platforms</strong>, and even street style to identify emerging trends. By immersing themselves in the latest fashion inspirations, they can discover new color palettes, fabrics, silhouettes, and patterns that can inform their collections.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, attending fashion events like runway shows or trade fairs allows designers to witness firsthand the newest designs and techniques in the industry. Networking with other professionals also provides an opportunity to exchange ideas and knowledge about upcoming trends.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While researching current fashion trends is essential, it is equally important for designers to stay true to their creative vision. The key is to find a balance between following trends and expressing one\'s unique style. This involves <em>infusing personal creativity</em> into the design process by experimenting with different elements such as texture combinations or unexpected details that make the collection stand out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Understanding your target audience is key - after all, you can\'t just throw together a collection and hope it lands, unless you\'re aiming for \'laundry day chic\'.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Identifying your target audience and their preferences</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Identifying and understanding your target audience\'s preferences is crucial in creating a unique fashion collection. By analyzing their tastes, style, and purchasing behavior, you can tailor your designs to meet their expectations and stand out in the competitive market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To begin with, conduct thorough market research to gain insights into your potential customers. Look beyond basic demographics and dig deeper into their lifestyle, interests, and values. This will help you create a more accurate profile of your target audience and identify their specific fashion preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once you have a clear understanding of your target audience, focus on developing a strong brand identity that resonates with them. Your collection should reflect their desires, aspirations, and individuality. Consider their preferred colors, patterns, fabrics, and silhouettes to create garments that they would gravitate towards.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another important aspect is to stay updated with current trends while maintaining authenticity. Strive for innovation by infusing your designs with unique elements that set them apart from other collections in the market. This could be through intricate embellishments or unexpected combinations of materials.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, consider collaborating with influencers or celebrities who have a strong influence on your target audience. Their endorsement can significantly boost the visibility and credibility of your collection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember that constant communication with your audience is key. Engage with them through social media platforms or organize focus groups to gather feedback on your designs. This will not only show that you value their opinions but also help you refine your collection based on their preferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By identifying your target audience\'s preferences accurately and translating them into a captivating fashion collection, you can establish yourself as a sought-after brand in the industry. Stay true to your vision while adapting to changing trends to ensure long-term success in the competitive fashion world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Who needs a theme when you can just throw together a random assortment of clothes and call it \'abstract fashion\'?</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Creating a cohesive theme or concept for your collection</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to sketching and designing different garments, remember that even a <strong>stick figure</strong> can look fashionable in the right outfit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sketching and designing different garments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To create a unique fashion collection, sketching and designing different garments is crucial. Here\'s a <strong>4-step guide</strong> to help you in the process:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Inspiration</strong>: Find inspiration from various sources such as art, nature, or even your personal experiences. Let your creativity flow and gather ideas to develop unique concepts.</li><li><strong>Sketching</strong>: Start by sketching your ideas on paper or using design software. Focus on defining the shapes, silhouettes, and details of each garment. Experiment with different styles and cuts to bring your vision to life.</li><li><strong>Material Selection</strong>: Once you have finalized your sketches, choose suitable materials that complement the design aesthetics and ensure comfort for the wearer. Consider factors like fabric weight, texture, color, and patterns while making your selections.</li><li><strong>Prototyping and Refining</strong>: Transform your sketches into physical prototypes by creating pattern templates and assembling them using appropriate sewing techniques. Continuously refine the fit and functionality of each garment through multiple iterations until you achieve perfection.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these steps, it\'s essential to pay attention to intricate details like buttons, zippers, trims, and embellishments that enhance the overall appeal of your collection. Remember to stay true to your unique style throughout the design process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to create a fashion collection that will make heads turn faster than an old lady spotting a sale - it\'s time to choose fabrics and materials!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Selecting appropriate fabrics and materials</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Selecting the perfect fabrics and materials for your fashion collection is a crucial step in creating a unique and stylish line. The right choice of materials can enhance the overall look and feel of your designs, making them stand out from the crowd.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When it comes to selecting fabrics, consider factors such as texture, weight, and durability. A mix of different textures can add depth and visual interest to your collection. Opt for high-quality materials that not only look good but also have a long lifespan. This way, your designs will not only be fashionable but also durable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to textures, colors play a vital role in creating a cohesive collection. Experiment with different color palettes to find combinations that reflect your brand\'s aesthetic. Remember to choose colors that complement each other and enhance the overall theme of your collection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, don\'t forget about sustainability when selecting fabrics and materials. Conscious consumers are increasingly concerned about eco-friendly fashion choices. Consider using <em>organic or recycled materials</em> to align with this growing trend.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lastly, pay attention to the feel and comfort of the fabrics you select. Think about how they will interact with the wearer\'s skin and body shape. Choose materials that offer breathability and flexibility without sacrificing style.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Collaborating with manufacturers or suppliers is like being in a dysfunctional relationship - sometimes you can\'t help but wonder if their screw-ups are intentional.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Collaborating with manufacturers or suppliers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Collaboration with manufacturers or suppliers is key in creating a unique fashion collection. By working closely together, <strong>designers can ensure that their vision is translated into reality</strong>. Effective communication and coordination with suppliers result in high-quality materials and finishes. This collaboration fosters innovation and enables the creation of cutting-edge designs. Additionally, it allows for efficient production processes and timely delivery of products to the market. Collaborating with manufacturers or suppliers is vital in achieving success in the fashion industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, when collaborating with manufacturers or suppliers, it is crucial to establish a strong partnership based on mutual trust and understanding. Building a rapport with these stakeholders enables open dialogue, facilitating the exchange of ideas and expertise. Through regular meetings and discussions, designers can gain valuable insights into the manufacturing process, materials availability, and technical capabilities. Such collaboration ensures that design concepts are executed flawlessly while maintaining cost-effectiveness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, by involving manufacturers or suppliers early on in the design process, designers can leverage their expertise to overcome potential challenges. These collaborators can offer suggestions on material selection, prototype development, and production techniques. Their knowledge and experience contribute to enhancing the overall quality of the fashion collection. Additionally, manufacturers or suppliers may have connections to specialized artisans or craftsmen who can add unique details or embellishments to the garments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Creating prototypes and samples: Where fashion dreams go to die and take on physical form.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Creating prototypes and samples</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here is a <strong>6-step guide to creating prototypes and samples</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Sketch and design:</strong> Begin by sketching your designs on paper or using digital software. This helps visualize your ideas and decide on the overall look of your collection.</li><li><strong>Material selection:</strong> Choose fabrics and materials that align with your design concept. Consider factors such as durability, texture, and color when making your selections.</li><li><strong>Pattern making:</strong> Create patterns based on your designs. These patterns serve as templates for cutting out fabric pieces. Accuracy is crucial in ensuring a well-fitting garment.</li><li><strong>Cutting and stitching:</strong> Use the patterns to cut out fabric pieces, then stitch them together according to the design specifications. This step allows you to see how the garments take shape.</li><li><strong>Fitting and adjustments:</strong> Try on the prototypes yourself or use fit models to assess the fit and comfort of the garments. Make any necessary adjustments to ensure an optimal fit.</li><li><strong>Critical evaluation:</strong> Conduct a thorough evaluation of each prototype, considering aspects like quality, aesthetics, functionality, and market appeal. This evaluation helps refine your designs before moving forward with mass production.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Keeping these steps in mind, you can create prototypes and samples that reflect your unique fashion vision without compromising quality or creativity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition, paying attention to details such as stitching techniques, seam finishes, and small embellishments can add an extra touch of uniqueness to your collection while maintaining high standards of craftsmanship.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Testing and modifying the designs: Because nothing says \'unique fashion\' like accidentally creating a dress that doubles as a hammock for cats.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Testing and modifying the designs</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Analyze the concept: Start by carefully examining the concept behind your designs. Understand the inspiration, aesthetic, and intended message of each piece. This will help you evaluate whether your designs successfully convey the desired emotions and ideas.</li><li>Test for functionality: Next, put your designs to the test for functionality. Consider factors such as comfort, movement, and practicality. This step ensures that your creations are not only visually appealing but also wearable and functional in real-life situations.</li><li>Gather feedback: Seek feedback from trusted individuals, such as fellow designers or industry professionals. Their fresh perspective can provide valuable insights into the strengths and weaknesses of your designs. Additionally, consider conducting focus groups or surveys to gather feedback from potential customers.</li><li>Iterate and improve: Based on the feedback received, make necessary modifications to enhance your designs. Be open to constructive criticism and willing to make changes that better align with the preferences of your target audience.</li><li>Re-evaluate before production: Before finalizing your designs for production, take another critical look at each piece. Ensure that all modifications have been implemented seamlessly and harmoniously within the collection as a whole.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Overall, testing and modifying your fashion designs allows you to refine and perfect them before they reach the market. By paying careful attention to every detail and gathering valuable feedback, you can create a truly exceptional fashion collection tailored to meet the needs and desires of your target audience without compromising on creativity or originality.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the world of fashion, finalizing a collection is like saying goodbye to all your favorite clothes at once, it\'s a bittersweet farewell filled with sequins and tears.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Finalizing the collection and preparing for production</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Curate the designs:</strong> Carefully review all the designs and select the ones that best align with your vision and target audience. Consider factors like style, uniqueness, market trends, and practicality.</li><li><strong>Refine the details:</strong> Pay attention to every little detail of your chosen designs. Make necessary adjustments, such as modifying patterns, choosing suitable fabrics, or altering color schemes. This step ensures that your collection is cohesive and visually appealing.</li><li><strong>Create technical specifications:</strong> Transform your creative ideas into detailed technical specifications that manufacturers can understand. Include accurate measurements, fabric requirements, construction techniques, and any special instructions for each design.</li><li><strong>Communicate with suppliers:</strong> Establish clear communication channels with your suppliers and manufacturers. Provide them with the finalized designs and technical specifications so they can accurately produce your collection. Regularly follow up with them to ensure progress and address any concerns that may arise.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these steps, it is important to consider factors like quality control, budgeting, and timelines when finalizing the collection and preparing for production. By meticulously reviewing each design, refining their details, creating precise technical specifications, and maintaining effective communication with suppliers, you can bring your unique fashion collection to life efficiently.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get your fashion collection noticed by putting it on display in a haunted house - the ghosts will be the best endorsers you could ever ask for!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Marketing and promoting your unique fashion collection</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Create a <strong>strong brand identity</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Develop a unique brand image that aligns with your collection\'s aesthetic. This includes designing a memorable logo, selecting consistent color schemes, and crafting compelling brand messaging.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Build an online presence</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Utilize social media platforms and e-commerce websites to promote your collection. Regularly post high-quality images and engaging content that showcases your garments in different settings and on diverse models.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Collaborate with influencers</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Partnering with influential individuals in the fashion industry can significantly boost your collection\'s visibility. Seek collaborations with relevant bloggers, Instagrammers, or celebrities who resonate with your brand\'s values and target audience.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>Participate in fashion events</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Showcase your collection at fashion shows, trade fairs, or pop-up shops to gain exposure within the industry. Connect with fashion event organizers and ensure that your display reflects the uniqueness of your designs.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>It is important to note that successful marketing goes beyond these points. Consider leveraging customer feedback, offering personalized experiences, and continuously adapting your strategies to stay ahead in the ever-evolving fashion landscape. By doing so, you can create a buzz around your unique fashion collection and establish a strong presence in the market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They say clothes make the man, so in order to truly make a statement, make sure your fashion collection screams \'<strong>I\'m all dressed up with nowhere to go!</strong>\'</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Launching and showcasing the collection</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure the success of your showcase, pay attention to every detail. From selecting models that embody the spirit of your collection to curating music that sets the mood, every aspect must be meticulously considered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consider collaborating with <strong>stylists</strong> and <strong>makeup artists</strong> who understand your vision and can bring it to life. Additionally, think about incorporating interactive elements into your showcase to engage your audience on a deeper level. This could include installations, multimedia displays, or even live performances.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, leverage digital platforms to extend the reach of your collection beyond the confines of physical events. Utilize <strong>social media channels</strong> to tease glimpses of your designs prior to launch and provide behind-the-scenes access during the showcase itself. Interactive features such as live streaming or virtual reality experiences can offer a unique perspective for those unable to attend in person.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Note: The previous response has been generated based on general knowledge on the topic \'launching and showcasing a fashion collection\' without having any prior access to domain-specific information or research materials aside from what\'s provided above.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember, even Picasso had critics, but at least he didn\'t have to deal with fashion police.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Receiving feedback and making improvements</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Listen to your audience: Gather feedback actively from your target market, whether it\'s through surveys or focus groups. Pay attention to their preferences and understand their needs.</li><li>Analyze constructive criticism: Embrace feedback that points out areas for improvement. Use it as an opportunity to refine your designs and enhance your collection.</li><li>Experiment and evolve: Act upon the feedback received by incorporating changes into your designs. Embrace innovation and adapt to the evolving trends of the fashion industry.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Additionally, collaborating with industry experts can provide valuable insights on enhancing your collection\'s uniqueness and appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By being open to feedback, implementing necessary changes, and staying attuned to fashion trends, you\'ll continuously improve your collection\'s distinctiveness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ready to rock the fashion world with your own unique collection? Just remember, fashion may change, but style... well, that\'s forever stamped on your credit card bill.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Conclusion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Creating a unique fashion collection requires careful planning, creativity, and attention to detail. By incorporating innovative design elements, selecting high-quality materials, and considering customer preferences, you can develop a collection that stands out from the rest. Additionally, collaborating with talented designers and utilizing unconventional sources of inspiration can further enhance the uniqueness of your collection. Remember to stay true to your brand\'s identity and vision throughout the process. With these strategies in mind, you can create a fashion collection that is truly one-of-a-kind.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>FAQs about creating a unique fashion collection:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Mitä tarvitaan ainutlaatuisen muotikokoelman luomiseksi?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ainutlaatuisen muotikokoelman luomiseksi tarvitaan luovaa visiota, trenditietoisuutta, korkealaatuisia materiaaleja, hyvää suunnittelua ja ammattitaitoa valmistustyössä.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miten voin saada inspiraatiota luodakseni ainutlaatuisen muotikokoelman?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Inspiraatioa voi saada eri lähteistä, kuten muotinäytöksistä, katumuodista, luonnosta, taiteesta, ja matkoilta eri kulttuureihin. Kannattaa myös seurata muotialan trendejä ja tutustua aiempien suunnittelijoiden töihin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Kuinka voin erottua massasta muotikokoelmani kanssa?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Voit erottua massasta muotikokoelmallasi käyttämällä ainutlaatuisia yksityiskohtia, kuten omaperäisiä kankaita, leikkauksia, värejä tai koristeita. Hyvä brändäys ja markkinointi auttavat myös erottumaan massasta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Kuinka tärkeää on tutkia kohdeyleisöäni ennen muotikokoelman luomista?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Kohdeyleisön tutkiminen on erittäin tärkeää, jotta voit suunnitella kokoelman, joka miellyttää ja puhuttelee juuri sinun kohdeyleisöäsi. Ymmärtämällä heidän mieltymyksiään, tarpeitaan ja elämäntyyliään voit suunnitella heille sopivia vaatteita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Kuinka valitsen oikeat materiaalit muotikokoelmaani?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Materiaalien valinnassa tulee ottaa huomioon muun muassa vaatteiden käyttötarkoitus, suunnitteluidea ja budjetti. Korkealaatuiset materiaalit, kuten luonnonkuidut, lisäävät usein kokoelman arvoa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Q: Miten huolehdin siitä, että muotikokoelmani on ajaton eikä vain hetkellinen trendi?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A: Ajattomuus voidaan saavuttaa suunnittelemalla vaatteita, jotka kestävät aikaa sekä muodin että laadun suhteen. Vältä liiallisia trendikkäitä yksityiskohtia ja panosta klassisiin malleihin, jotka eivät mene nopeasti pois muodista.</p>\n<!-- /wp:paragraph -->','Kuinka luoda ainutlaatuinen muotikokoelma','','inherit','closed','closed','','201-revision-v1','','','2023-08-24 18:01:07','2023-08-24 18:01:07','',201,'https://sadepisaroitaniitynkukkasilla.fi/?p=202',0,'revision','',0),(203,1,'2023-08-24 18:03:26','2023-08-24 18:03:26','<!-- wp:paragraph -->\n<p>Sustainable fashion is a concept that promotes environmentally friendly practices within the fashion industry. It involves using materials and manufacturing processes that have less impact on the environment. By choosing <strong>sustainable materials</strong> such as organic cotton, hemp, or recycled fabrics, fashion designers can contribute to reducing pollution and waste in the industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to material choices, sustainable fashion also focuses on <strong>ethical production practices</strong>. This means ensuring fair wages and safe working conditions for garment workers, as well as minimizing the use of harmful chemicals in dyeing and printing processes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, sustainable fashion encourages consumers to embrace <strong>conscious shopping habits</strong>. By investing in <strong>quality pieces that are designed to last</strong>, consumers can reduce their overall clothing consumption and contribute to a more sustainable future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, sustainable fashion extends beyond just clothing. It encompasses accessories, footwear, and even packaging materials. By considering every aspect of the design and production process, designers can create collections that align with sustainability principles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, an introduction to sustainable fashion sets the stage for a more responsible approach to creating and consuming fashion. By incorporating eco-friendly materials, ethical production practices, and conscious consumer behavior into their designs, fashion designers can play a vital role in mitigating the environmental impacts of the industry while still creating beautiful and innovative pieces.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Saving the planet never looked so stylish - find out how environmentally-friendly materials can make fashionistas feel both fabulous and morally superior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Why choose environmentally-friendly materials?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Choosing environmentally-friendly materials is a wise decision, both ethically and practically. Not only does it reduce the negative impact on the environment, but it also promotes sustainability in the fashion industry. By opting for <strong>eco-friendly fabrics and materials</strong>, you contribute to conserving natural resources, reducing pollution, and supporting fair trade practices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not all materials used in fashion production are created equal. While conventional materials like polyester and synthetic fibers may offer affordability and durability, they come at a significant cost to the environment. These materials are often derived from non-renewable resources and involve harmful manufacturing processes that release toxins into the air and water. By choosing environmentally-friendly materials such as <strong>organic cotton, bamboo fiber, or recycled polyester</strong>, you can minimize your carbon footprint and support sustainable production methods.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to their positive environmental impact, environmentally-friendly materials often have other beneficial qualities for both consumers and designers. Natural fibers like organic cotton are <strong>hypoallergenic, breathable, and gentle on the skin</strong>. They also tend to be <strong>biodegradable</strong>, ensuring that they do not contribute to landfill waste at the end of their lifespan. By incorporating these materials into your designs, you can create garments that not only look good but also feel good on the wearer\'s skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From recycled plastic bottles to organic cotton, dressing sustainably is the new black, and it\'s not just for funerals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Types of environmentally-friendly materials for fashion design</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure you make environmentally-conscious choices in fashion design, explore the wide range of eco-friendly materials available. Discover the versatility and sustainability of organic cotton, the durability and strength of hemp, and the potential of recycled fabrics. These materials serve as solutions to creating fashion that is both stylish and kind to the environment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Organic cotton</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Grown without harmful chemicals, promoting soil health.</li><li>Reduces water usage by relying on rainfall rather than irrigation.</li><li>Organic cotton fibers are stronger and softer, resulting in high-quality garments.</li><li>It supports fair trade practices and better working conditions for farmers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>What sets organic cotton apart is its commitment to sustainability throughout its lifecycle. From seed to harvest to fabric production, every step upholds eco-friendly practices and ethical standards. By choosing organic cotton, designers can join the movement towards a greener future in fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hemp: Because wearing clothes made from plants is a great way to embrace your inner hippie and confuse your gardener.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Hemp</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In addition to its durability and sustainability, hemp also offers other unique benefits. The fibers have natural <strong>anti-bacterial properties</strong>, keeping clothes fresh and odor-free even after multiple uses. Furthermore, hemp can be blended with other materials such as cotton or silk to enhance its <strong>softness and drape</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hemp fabric also has excellent breathability, allowing air to circulate through the garment and keeping the wearer cool in hot weather. This makes it a popular choice for summer clothing and activewear. Moreover, hemp has <strong>natural UV resistance</strong> that helps protect the wearer from harmful sun rays.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To add another dimension to its versatility, hemp can be used in a variety of textile applications. It can be spun into yarn for knitting or weaving, crafted into non-woven fabrics for upholstery or interior design purposes, or even transformed into paper for packaging or printing. Its uses extend beyond clothing, marking it as a truly multi-purpose material.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Recycled fabrics</em>: Because fashion shouldn\'t have to choose between being trendy or eco-friendly, it can now have its (recycled) cake and wear it too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Recycled fabrics</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Using recycled fabrics not only promotes sustainability but also adds a unique touch to fashion collections. These fabrics can be dyed in various colors or patterns, giving designers the creative freedom to experiment with textures and styles while keeping the planet in mind.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>First, recycled polyester fabric is made from plastic bottles and other post-consumer waste, which helps reduce landfill waste and the need for raw materials.</li><li>Next, recycled cotton fabric is created by shredding old garments or textile waste and then spinning it into new yarn. This process saves water and energy compared to growing new cotton plants.</li><li>Lastly, recycled nylon fabric is produced using discarded fishing nets and other industrial waste. By utilizing these materials, fashion designers can contribute to cleaning our oceans and minimizing pollution.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Save the planet and look fabulous while doing it — these environmentally-friendly materials will have you slaying the fashion game and the ozone layer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Benefits of using environmentally-friendly materials</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To make your fashion design more environmentally conscious, consider using environmentally-friendly materials. These materials offer various benefits, including reduced environmental impact and health benefits for consumers. By exploring the advantages of using environmentally-friendly materials in fashion design, you can create garments that align with sustainability goals and promote well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Reduced environmental impact</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The use of <strong>environmentally-friendly materials</strong> has numerous benefits, one of which is the reduced environmental impact. This means that these materials have a lower negative effect on the environment compared to traditional materials.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Energy-efficient production:</strong> Environmentally-friendly materials are often produced using less energy, reducing carbon emissions and minimizing the use of fossil fuels.</li><li><strong>Sustainable sourcing:</strong> These materials are often sourced from renewable resources, such as responsibly managed forests or recycled materials, reducing deforestation and promoting circular economy.</li><li><strong>Reduced pollution:</strong> Environmentally-friendly materials are typically manufactured using fewer harmful chemicals, resulting in reduced air and water pollution.</li><li><strong>Longevity and durability:</strong> Many eco-friendly materials are designed to be long-lasting and durable, reducing the need for frequent replacements and minimizing waste generation.</li><li><strong>Biodegradability or recyclability:</strong> Some environmentally-friendly materials are biodegradable or easily recyclable, offering sustainable end-of-life options and reducing landfill waste.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Moreover, environmentally-friendly materials can also have unique advantages not found in conventional options. For instance, certain eco-friendly materials may have natural insulation properties, leading to energy savings in buildings without relying heavily on artificial heating or cooling systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Using environmentally-friendly materials not only keeps the planet healthy, but it also ensures that consumers won\'t have to <strong>call in sick from inhaling toxic fumes or breaking out in rashes</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Health benefits for consumers</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Using environmentally-friendly materials not only benefits the planet but also has several health advantages for consumers. Switching to these materials can have a positive impact on individuals and their overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Improved indoor air quality:</strong> Environmentally-friendly materials, such as low VOC paints and natural flooring options, can significantly reduce indoor air pollution, making it safer for residents.</li><li><strong>Reduces exposure to harmful chemicals:</strong> By choosing eco-friendly products, consumers can avoid exposure to toxic materials commonly found in conventional items.</li><li><strong>Better for allergen-sensitive individuals:</strong> Many environmentally-friendly materials are hypoallergenic and free from common allergens like formaldehyde or certain types of metals, reducing the risk of allergic reactions.</li><li><strong>Enhanced mental well-being:</strong> Surrounding oneself with sustainable and natural elements can promote a sense of tranquility and relaxation, positively impacting mental health.</li><li><strong>Safer for children:</strong> Eco-friendly materials are often non-toxic and safer for children, minimizing the risk of accidental ingestion or exposure to harmful substances.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these benefits, environmentally-friendly materials also offer unique features that make them an attractive choice. Bamboo flooring, for instance, is known for its durability and resistance to moisture, while organic cotton textiles are both soft on the skin and better for the environment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, by prioritizing the use of environmentally-friendly materials in our daily lives, we can not only contribute to a healthier planet but also ensure better health outcomes for ourselves and future generations. Who said fashion and sustainability can\'t go hand in hand? It\'s time to eco-up your wardrobe and make Mother Nature the hottest trend of the season!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How to incorporate sustainable materials into fashion design</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To incorporate sustainable materials into fashion design, turn to sourcing sustainable materials and designing with eco-friendly fabrics. These sub-sections will provide solutions for finding environmentally-friendly materials and offer design considerations in utilizing them for a more sustainable fashion industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Sourcing sustainable materials</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Fashion designers are increasingly seeking ways to incorporate sustainable materials into their designs. This not only helps reduce the environmental impact of the fashion industry, but also appeals to consumers who prioritize eco-friendly and socially responsible products. Here are three key points to consider when sourcing sustainable materials:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Explore organic fabrics: Organic cotton, hemp, and bamboo are excellent choices for sustainable fashion. These fabrics are grown without the use of harmful pesticides or synthetic fertilizers, making them better for the planet and for those involved in their production.</li><li>Embrace recycled materials: Recycling plays a crucial role in creating a circular economy within the fashion industry. By using recycled polyester, nylon, or even upcycling old garments into new designs, designers can minimize waste and contribute to a more environmentally conscious approach.</li><li>Support ethical sourcing: It\'s not just about using sustainable materials; it\'s also important to ensure that they are sourced ethically. Look for suppliers who prioritize fair trade practices, transparency in their supply chain, and uphold labor rights. This ensures that the entire production process aligns with sustainable principles.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these points, it\'s worth mentioning that collaborations with eco-conscious brands and organizations can provide access to a wider range of sustainable materials and innovative techniques. By staying informed about emerging advancements in sustainable fashion, designers can continue to push boundaries while minimizing their ecological footprint.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The incorporation of sustainable materials is an essential step towards creating a more responsible fashion industry. With growing consumer awareness and demand for environmentally friendly products, it is imperative for designers to adapt their practices and embrace sustainability as a core value. By sourcing sustainable materials thoughtfully and incorporating them into their designs, fashion designers have the power to make a significant positive impact on both the environment and society as a whole.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Step up your fashion game and save the planet one stitch at a time by considering eco-friendly fabrics - you\'ll look good while reducing your carbon footprint, it\'s a win-win!</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Design considerations for using eco-friendly fabrics</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Designing with eco-friendly fabrics requires careful consideration. To achieve sustainable fashion, designers must carefully select materials that have minimal environmental impact and adhere to ethical practices throughout the supply chain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Material Selection:</strong> Consider using organic fibers such as <strong>organic cotton or hemp</strong>, which are grown without synthetic fertilizers or pesticides. These materials reduce water and energy consumption.</li><li><strong>Low-Impact Dyes:</strong> Opt for low-impact or natural dyes that minimize the release of harmful chemicals into the environment. Look for certifications like <strong>Global Organic Textile Standard (GOTS)</strong> to ensure higher standards.</li><li><strong>Recycled Fabrics:</strong> Incorporate recycled materials into your designs, such as polyester made from recycled plastic bottles. This helps reduce waste and conserve resources without compromising on quality.</li><li><strong>End-of-Life Disposal:</strong> Consider the entire lifespan of your garments. Design for easy disassembly and recyclability to minimize waste generation and support circular economy practices.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>It is important to note that each design decision in eco-friendly fashion has a profound impact on the planet. By prioritizing sustainability and embracing innovative practices, designers can create fashionable pieces that embody both style and environmental consciousness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to dress sustainably and slay the fashion game – these brands and designers are not just eco-friendly, they\'re also trendsetters making Mother Earth proud!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Examples of sustainable fashion brands and designers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sustainable fashion brands and designers actively contribute to protecting the environment through their innovative approach. Here are three noteworthy examples:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Reformation:</strong> Known for their trendy and sustainable clothing, Reformation uses eco-friendly fabrics such as TENCEL™ lyocell, recycled materials, and deadstock fabrics. They prioritize transparency in their supply chain and aim for zero waste production.</li><li><strong>Stella McCartney:</strong> As a pioneer of sustainable fashion, Stella McCartney revolutionizes the industry with her cruelty-free and vegan designs. She avoids using animal fur or leather and instead, utilizes alternative materials like vegetarian leather made from recycled polyester.</li><li><strong>Patagonia:</strong> This outdoor clothing brand emphasizes sustainability by creating durable products that withstand wear and tear. Patagonia also promotes fair trade practices and supports various environmental initiatives, demonstrating their commitment to minimizing their ecological footprint.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>These brands set an example for the fashion industry by combining style with sustainability. By valuing eco-friendly practices, they inspire others to adopt more environmentally conscious approaches to fashion design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Why be a trend follower when you can be a trendsetter and save the planet at the same time with sustainable fashion?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Tips for promoting and marketing sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Promoting and marketing sustainable fashion requires strategic planning and effective communication. Here are some tips:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Reach out to eco-conscious influencers and collaborate with them to promote your brand.</li><li>Create compelling storytelling content around your sustainable fashion initiatives.</li><li>Highlight the environmental benefits of your products in your marketing campaigns.</li><li>Use social media platforms to educate your audience about the importance of sustainable fashion.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>By implementing these strategies, you can increase awareness and demand for your environmentally friendly fashion products, ultimately contributing to a more sustainable future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Looking fashionable while saving the planet? It\'s like wearing a cape and being Earth\'s superhero, but with better style and fewer supervillains.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Conclusion: Emphasizing the importance of sustainable fashion and materials</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sustainable fashion and materials play a crucial role in protecting the environment. By choosing eco-friendly fabrics and production methods, we can minimize the negative impact of the fashion industry on our planet. With growing awareness, consumers are demanding more sustainable options, pushing brands to adopt greener practices. This shift towards sustainability is not just a trend but a necessary step towards a more responsible and conscious future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sustainable fashion goes beyond using organic or recycled materials. It encompasses the entire lifecycle of a garment, from sourcing raw materials to manufacturing, distribution, and end-of-life disposal. Brands that prioritize sustainability consider factors like fair trade, ethical labor practices, reducing waste, and minimizing the use of harmful chemicals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Choosing sustainable materials is crucial for creating environmentally friendly fashion products. Bamboo, for example, is widely used due to its fast growth rate and low water consumption compared to traditional cotton. Recycled polyester made from plastic bottles offers an alternative to petroleum-based fabrics. In addition, organic cotton avoids pesticides and uses less water than conventional cotton.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another aspect to be considered is the dyeing process. Traditional dyeing methods often involve toxic chemicals that harm both the environment and workers\' health. Sustainable alternatives such as natural dyes derived from plants can achieve vibrant colors while being safer for everyone involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>1. What are environmentally friendly materials in fashion design?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Environmentally friendly materials in fashion design refer to sustainable fabrics and textiles that are produced using eco-friendly processes, such as organic cotton, hemp, bamboo, Tencel, and recycled polyester.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>2. How can I incorporate environmentally friendly materials into my fashion designs?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can incorporate environmentally friendly materials into your fashion designs by sourcing sustainable fabrics and textiles from eco-conscious suppliers. Additionally, you can explore options like upcycling or repurposing materials, using natural dyes, and reducing waste throughout the production process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>3. Are environmentally friendly materials more expensive?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While environmentally friendly materials can sometimes be slightly more expensive than conventional alternatives, the price difference is often minimal. However, investing in sustainable materials can be seen as a long-term investment in the future of fashion and the planet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>4. How can I communicate the use of environmentally friendly materials to my customers?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can communicate the use of environmentally friendly materials to your customers through transparent labeling, hangtags, or product descriptions that highlight the sustainable materials used in your designs. Sharing your brand\'s commitment to sustainability through marketing and social media channels is also effective in educating your customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>5. Where can I find suppliers of environmentally friendly materials?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are various online platforms and directories that connect designers with suppliers of environmentally friendly materials. Some popular options include EcoTextile, Source4Style, and Organic Cotton Plus. You can also explore local resources and attend sustainability-focused trade shows or events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>6. Is it challenging to source a wide range of environmentally friendly material options?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While the availability of environmentally friendly material options has significantly increased in recent years, it can still be challenging to find a wide range of options, especially for specific types of fabrics. However, as sustainable fashion continues to gain momentum, more suppliers are diversifying their offerings to meet the demand.</p>\n<!-- /wp:paragraph -->','Muotisuunnittelun opas ympristystvllisiin materiaaleihin','','publish','closed','closed','','muotisuunnittelun-opas-ympristystvllisiin-materiaaleihin','','','2023-12-11 11:09:39','2023-12-11 11:09:39','',0,'https://sadepisaroitaniitynkukkasilla.fi/?p=203',0,'post','',0),(204,1,'2023-08-24 18:03:26','2023-08-24 18:03:26','<!-- wp:paragraph -->\n<p>Sustainable fashion is a concept that promotes environmentally friendly practices within the fashion industry. It involves using materials and manufacturing processes that have less impact on the environment. By choosing <strong>sustainable materials</strong> such as organic cotton, hemp, or recycled fabrics, fashion designers can contribute to reducing pollution and waste in the industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to material choices, sustainable fashion also focuses on <strong>ethical production practices</strong>. This means ensuring fair wages and safe working conditions for garment workers, as well as minimizing the use of harmful chemicals in dyeing and printing processes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Moreover, sustainable fashion encourages consumers to embrace <strong>conscious shopping habits</strong>. By investing in <strong>quality pieces that are designed to last</strong>, consumers can reduce their overall clothing consumption and contribute to a more sustainable future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, sustainable fashion extends beyond just clothing. It encompasses accessories, footwear, and even packaging materials. By considering every aspect of the design and production process, designers can create collections that align with sustainability principles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, an introduction to sustainable fashion sets the stage for a more responsible approach to creating and consuming fashion. By incorporating eco-friendly materials, ethical production practices, and conscious consumer behavior into their designs, fashion designers can play a vital role in mitigating the environmental impacts of the industry while still creating beautiful and innovative pieces.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Saving the planet never looked so stylish - find out how environmentally-friendly materials can make fashionistas feel both fabulous and morally superior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Why choose environmentally-friendly materials?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Choosing environmentally-friendly materials is a wise decision, both ethically and practically. Not only does it reduce the negative impact on the environment, but it also promotes sustainability in the fashion industry. By opting for <strong>eco-friendly fabrics and materials</strong>, you contribute to conserving natural resources, reducing pollution, and supporting fair trade practices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not all materials used in fashion production are created equal. While conventional materials like polyester and synthetic fibers may offer affordability and durability, they come at a significant cost to the environment. These materials are often derived from non-renewable resources and involve harmful manufacturing processes that release toxins into the air and water. By choosing environmentally-friendly materials such as <strong>organic cotton, bamboo fiber, or recycled polyester</strong>, you can minimize your carbon footprint and support sustainable production methods.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to their positive environmental impact, environmentally-friendly materials often have other beneficial qualities for both consumers and designers. Natural fibers like organic cotton are <strong>hypoallergenic, breathable, and gentle on the skin</strong>. They also tend to be <strong>biodegradable</strong>, ensuring that they do not contribute to landfill waste at the end of their lifespan. By incorporating these materials into your designs, you can create garments that not only look good but also feel good on the wearer\'s skin.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From recycled plastic bottles to organic cotton, dressing sustainably is the new black, and it\'s not just for funerals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Types of environmentally-friendly materials for fashion design</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To ensure you make environmentally-conscious choices in fashion design, explore the wide range of eco-friendly materials available. Discover the versatility and sustainability of organic cotton, the durability and strength of hemp, and the potential of recycled fabrics. These materials serve as solutions to creating fashion that is both stylish and kind to the environment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Organic cotton</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Grown without harmful chemicals, promoting soil health.</li><li>Reduces water usage by relying on rainfall rather than irrigation.</li><li>Organic cotton fibers are stronger and softer, resulting in high-quality garments.</li><li>It supports fair trade practices and better working conditions for farmers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>What sets organic cotton apart is its commitment to sustainability throughout its lifecycle. From seed to harvest to fabric production, every step upholds eco-friendly practices and ethical standards. By choosing organic cotton, designers can join the movement towards a greener future in fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hemp: Because wearing clothes made from plants is a great way to embrace your inner hippie and confuse your gardener.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Hemp</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In addition to its durability and sustainability, hemp also offers other unique benefits. The fibers have natural <strong>anti-bacterial properties</strong>, keeping clothes fresh and odor-free even after multiple uses. Furthermore, hemp can be blended with other materials such as cotton or silk to enhance its <strong>softness and drape</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hemp fabric also has excellent breathability, allowing air to circulate through the garment and keeping the wearer cool in hot weather. This makes it a popular choice for summer clothing and activewear. Moreover, hemp has <strong>natural UV resistance</strong> that helps protect the wearer from harmful sun rays.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To add another dimension to its versatility, hemp can be used in a variety of textile applications. It can be spun into yarn for knitting or weaving, crafted into non-woven fabrics for upholstery or interior design purposes, or even transformed into paper for packaging or printing. Its uses extend beyond clothing, marking it as a truly multi-purpose material.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Recycled fabrics</em>: Because fashion shouldn\'t have to choose between being trendy or eco-friendly, it can now have its (recycled) cake and wear it too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Recycled fabrics</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Using recycled fabrics not only promotes sustainability but also adds a unique touch to fashion collections. These fabrics can be dyed in various colors or patterns, giving designers the creative freedom to experiment with textures and styles while keeping the planet in mind.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>First, recycled polyester fabric is made from plastic bottles and other post-consumer waste, which helps reduce landfill waste and the need for raw materials.</li><li>Next, recycled cotton fabric is created by shredding old garments or textile waste and then spinning it into new yarn. This process saves water and energy compared to growing new cotton plants.</li><li>Lastly, recycled nylon fabric is produced using discarded fishing nets and other industrial waste. By utilizing these materials, fashion designers can contribute to cleaning our oceans and minimizing pollution.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Save the planet and look fabulous while doing it — these environmentally-friendly materials will have you slaying the fashion game and the ozone layer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Benefits of using environmentally-friendly materials</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To make your fashion design more environmentally conscious, consider using environmentally-friendly materials. These materials offer various benefits, including reduced environmental impact and health benefits for consumers. By exploring the advantages of using environmentally-friendly materials in fashion design, you can create garments that align with sustainability goals and promote well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Reduced environmental impact</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The use of <strong>environmentally-friendly materials</strong> has numerous benefits, one of which is the reduced environmental impact. This means that these materials have a lower negative effect on the environment compared to traditional materials.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Energy-efficient production:</strong> Environmentally-friendly materials are often produced using less energy, reducing carbon emissions and minimizing the use of fossil fuels.</li><li><strong>Sustainable sourcing:</strong> These materials are often sourced from renewable resources, such as responsibly managed forests or recycled materials, reducing deforestation and promoting circular economy.</li><li><strong>Reduced pollution:</strong> Environmentally-friendly materials are typically manufactured using fewer harmful chemicals, resulting in reduced air and water pollution.</li><li><strong>Longevity and durability:</strong> Many eco-friendly materials are designed to be long-lasting and durable, reducing the need for frequent replacements and minimizing waste generation.</li><li><strong>Biodegradability or recyclability:</strong> Some environmentally-friendly materials are biodegradable or easily recyclable, offering sustainable end-of-life options and reducing landfill waste.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Moreover, environmentally-friendly materials can also have unique advantages not found in conventional options. For instance, certain eco-friendly materials may have natural insulation properties, leading to energy savings in buildings without relying heavily on artificial heating or cooling systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Using environmentally-friendly materials not only keeps the planet healthy, but it also ensures that consumers won\'t have to <strong>call in sick from inhaling toxic fumes or breaking out in rashes</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Health benefits for consumers</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Using environmentally-friendly materials not only benefits the planet but also has several health advantages for consumers. Switching to these materials can have a positive impact on individuals and their overall well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Improved indoor air quality:</strong> Environmentally-friendly materials, such as low VOC paints and natural flooring options, can significantly reduce indoor air pollution, making it safer for residents.</li><li><strong>Reduces exposure to harmful chemicals:</strong> By choosing eco-friendly products, consumers can avoid exposure to toxic materials commonly found in conventional items.</li><li><strong>Better for allergen-sensitive individuals:</strong> Many environmentally-friendly materials are hypoallergenic and free from common allergens like formaldehyde or certain types of metals, reducing the risk of allergic reactions.</li><li><strong>Enhanced mental well-being:</strong> Surrounding oneself with sustainable and natural elements can promote a sense of tranquility and relaxation, positively impacting mental health.</li><li><strong>Safer for children:</strong> Eco-friendly materials are often non-toxic and safer for children, minimizing the risk of accidental ingestion or exposure to harmful substances.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these benefits, environmentally-friendly materials also offer unique features that make them an attractive choice. Bamboo flooring, for instance, is known for its durability and resistance to moisture, while organic cotton textiles are both soft on the skin and better for the environment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Overall, by prioritizing the use of environmentally-friendly materials in our daily lives, we can not only contribute to a healthier planet but also ensure better health outcomes for ourselves and future generations. Who said fashion and sustainability can\'t go hand in hand? It\'s time to eco-up your wardrobe and make Mother Nature the hottest trend of the season!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How to incorporate sustainable materials into fashion design</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To incorporate sustainable materials into fashion design, turn to sourcing sustainable materials and designing with eco-friendly fabrics. These sub-sections will provide solutions for finding environmentally-friendly materials and offer design considerations in utilizing them for a more sustainable fashion industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Sourcing sustainable materials</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Fashion designers are increasingly seeking ways to incorporate sustainable materials into their designs. This not only helps reduce the environmental impact of the fashion industry, but also appeals to consumers who prioritize eco-friendly and socially responsible products. Here are three key points to consider when sourcing sustainable materials:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Explore organic fabrics: Organic cotton, hemp, and bamboo are excellent choices for sustainable fashion. These fabrics are grown without the use of harmful pesticides or synthetic fertilizers, making them better for the planet and for those involved in their production.</li><li>Embrace recycled materials: Recycling plays a crucial role in creating a circular economy within the fashion industry. By using recycled polyester, nylon, or even upcycling old garments into new designs, designers can minimize waste and contribute to a more environmentally conscious approach.</li><li>Support ethical sourcing: It\'s not just about using sustainable materials; it\'s also important to ensure that they are sourced ethically. Look for suppliers who prioritize fair trade practices, transparency in their supply chain, and uphold labor rights. This ensures that the entire production process aligns with sustainable principles.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In addition to these points, it\'s worth mentioning that collaborations with eco-conscious brands and organizations can provide access to a wider range of sustainable materials and innovative techniques. By staying informed about emerging advancements in sustainable fashion, designers can continue to push boundaries while minimizing their ecological footprint.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The incorporation of sustainable materials is an essential step towards creating a more responsible fashion industry. With growing consumer awareness and demand for environmentally friendly products, it is imperative for designers to adapt their practices and embrace sustainability as a core value. By sourcing sustainable materials thoughtfully and incorporating them into their designs, fashion designers have the power to make a significant positive impact on both the environment and society as a whole.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Step up your fashion game and save the planet one stitch at a time by considering eco-friendly fabrics - you\'ll look good while reducing your carbon footprint, it\'s a win-win!</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Design considerations for using eco-friendly fabrics</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Designing with eco-friendly fabrics requires careful consideration. To achieve sustainable fashion, designers must carefully select materials that have minimal environmental impact and adhere to ethical practices throughout the supply chain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Material Selection:</strong> Consider using organic fibers such as <strong>organic cotton or hemp</strong>, which are grown without synthetic fertilizers or pesticides. These materials reduce water and energy consumption.</li><li><strong>Low-Impact Dyes:</strong> Opt for low-impact or natural dyes that minimize the release of harmful chemicals into the environment. Look for certifications like <strong>Global Organic Textile Standard (GOTS)</strong> to ensure higher standards.</li><li><strong>Recycled Fabrics:</strong> Incorporate recycled materials into your designs, such as polyester made from recycled plastic bottles. This helps reduce waste and conserve resources without compromising on quality.</li><li><strong>End-of-Life Disposal:</strong> Consider the entire lifespan of your garments. Design for easy disassembly and recyclability to minimize waste generation and support circular economy practices.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>It is important to note that each design decision in eco-friendly fashion has a profound impact on the planet. By prioritizing sustainability and embracing innovative practices, designers can create fashionable pieces that embody both style and environmental consciousness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Get ready to dress sustainably and slay the fashion game – these brands and designers are not just eco-friendly, they\'re also trendsetters making Mother Earth proud!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Examples of sustainable fashion brands and designers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sustainable fashion brands and designers actively contribute to protecting the environment through their innovative approach. Here are three noteworthy examples:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Reformation:</strong> Known for their trendy and sustainable clothing, Reformation uses eco-friendly fabrics such as TENCEL™ lyocell, recycled materials, and deadstock fabrics. They prioritize transparency in their supply chain and aim for zero waste production.</li><li><strong>Stella McCartney:</strong> As a pioneer of sustainable fashion, Stella McCartney revolutionizes the industry with her cruelty-free and vegan designs. She avoids using animal fur or leather and instead, utilizes alternative materials like vegetarian leather made from recycled polyester.</li><li><strong>Patagonia:</strong> This outdoor clothing brand emphasizes sustainability by creating durable products that withstand wear and tear. Patagonia also promotes fair trade practices and supports various environmental initiatives, demonstrating their commitment to minimizing their ecological footprint.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>These brands set an example for the fashion industry by combining style with sustainability. By valuing eco-friendly practices, they inspire others to adopt more environmentally conscious approaches to fashion design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Why be a trend follower when you can be a trendsetter and save the planet at the same time with sustainable fashion?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Tips for promoting and marketing sustainable fashion</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Promoting and marketing sustainable fashion requires strategic planning and effective communication. Here are some tips:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Reach out to eco-conscious influencers and collaborate with them to promote your brand.</li><li>Create compelling storytelling content around your sustainable fashion initiatives.</li><li>Highlight the environmental benefits of your products in your marketing campaigns.</li><li>Use social media platforms to educate your audience about the importance of sustainable fashion.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>By implementing these strategies, you can increase awareness and demand for your environmentally friendly fashion products, ultimately contributing to a more sustainable future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Looking fashionable while saving the planet? It\'s like wearing a cape and being Earth\'s superhero, but with better style and fewer supervillains.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Conclusion: Emphasizing the importance of sustainable fashion and materials</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sustainable fashion and materials play a crucial role in protecting the environment. By choosing eco-friendly fabrics and production methods, we can minimize the negative impact of the fashion industry on our planet. With growing awareness, consumers are demanding more sustainable options, pushing brands to adopt greener practices. This shift towards sustainability is not just a trend but a necessary step towards a more responsible and conscious future.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sustainable fashion goes beyond using organic or recycled materials. It encompasses the entire lifecycle of a garment, from sourcing raw materials to manufacturing, distribution, and end-of-life disposal. Brands that prioritize sustainability consider factors like fair trade, ethical labor practices, reducing waste, and minimizing the use of harmful chemicals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Choosing sustainable materials is crucial for creating environmentally friendly fashion products. Bamboo, for example, is widely used due to its fast growth rate and low water consumption compared to traditional cotton. Recycled polyester made from plastic bottles offers an alternative to petroleum-based fabrics. In addition, organic cotton avoids pesticides and uses less water than conventional cotton.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another aspect to be considered is the dyeing process. Traditional dyeing methods often involve toxic chemicals that harm both the environment and workers\' health. Sustainable alternatives such as natural dyes derived from plants can achieve vibrant colors while being safer for everyone involved.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Frequently Asked Questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>1. What are environmentally friendly materials in fashion design?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Environmentally friendly materials in fashion design refer to sustainable fabrics and textiles that are produced using eco-friendly processes, such as organic cotton, hemp, bamboo, Tencel, and recycled polyester.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>2. How can I incorporate environmentally friendly materials into my fashion designs?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can incorporate environmentally friendly materials into your fashion designs by sourcing sustainable fabrics and textiles from eco-conscious suppliers. Additionally, you can explore options like upcycling or repurposing materials, using natural dyes, and reducing waste throughout the production process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>3. Are environmentally friendly materials more expensive?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While environmentally friendly materials can sometimes be slightly more expensive than conventional alternatives, the price difference is often minimal. However, investing in sustainable materials can be seen as a long-term investment in the future of fashion and the planet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>4. How can I communicate the use of environmentally friendly materials to my customers?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can communicate the use of environmentally friendly materials to your customers through transparent labeling, hangtags, or product descriptions that highlight the sustainable materials used in your designs. Sharing your brand\'s commitment to sustainability through marketing and social media channels is also effective in educating your customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>5. Where can I find suppliers of environmentally friendly materials?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are various online platforms and directories that connect designers with suppliers of environmentally friendly materials. Some popular options include EcoTextile, Source4Style, and Organic Cotton Plus. You can also explore local resources and attend sustainability-focused trade shows or events.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>6. Is it challenging to source a wide range of environmentally friendly material options?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While the availability of environmentally friendly material options has significantly increased in recent years, it can still be challenging to find a wide range of options, especially for specific types of fabrics. However, as sustainable fashion continues to gain momentum, more suppliers are diversifying their offerings to meet the demand.</p>\n<!-- /wp:paragraph -->','Muotisuunnittelun opas ympristystvllisiin materiaaleihin','','inherit','closed','closed','','203-revision-v1','','','2023-08-24 18:03:26','2023-08-24 18:03:26','',203,'https://sadepisaroitaniitynkukkasilla.fi/?p=204',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_order` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (24,2,0),(126,3,0),(127,3,0),(128,4,0),(129,4,0),(130,4,0),(131,4,0),(132,4,0),(133,4,0),(134,4,0),(135,4,0),(170,4,0),(173,4,0),(177,4,0),(195,1,0),(197,4,0),(199,4,0),(201,4,0),(203,4,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint unsigned NOT NULL DEFAULT '0',
  `count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'elementor_library_type','',0,1),(3,3,'nav_menu','',0,2),(4,4,'category','',0,15);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'section','section',0),(3,'Menu 1','menu-1',0),(4,'Muoti','muoti',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','tinybird400'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"20a658318efbc8f5fe6ff2a50806bee6eaaa99d52c594764b3eb76522d2f0f09\";a:4:{s:10:\"expiration\";i:1693071981;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36\";s:5:\"login\";i:1692899181;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','191'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"103.178.44.0\";}'),(19,1,'wp_user-settings','libraryContent=upload&editor=tinymce'),(20,1,'wp_user-settings-time','1629280551'),(21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(22,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int NOT NULL DEFAULT '0',
  `display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'tinybird400','$P$BHFO1uNNMgN9s9GsxBHVPzz8c72BaP.','tinybird400','[email protected]','http://sadepisaroitaniitynkukkasilla.fi','2021-04-08 11:28:05','',0,'tinybird400');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_keyword_links`
--

DROP TABLE IF EXISTS `wp_wpil_keyword_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keyword_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `keyword_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  `post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `anchor` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_keyword_links`
--

LOCK TABLES `wp_wpil_keyword_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_keyword_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_keyword_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_keyword_select_links`
--

DROP TABLE IF EXISTS `wp_wpil_keyword_select_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keyword_select_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `keyword_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  `post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sentence_text` text COLLATE utf8mb4_unicode_ci,
  `case_keyword` text COLLATE utf8mb4_unicode_ci,
  `meta_data` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_keyword_select_links`
--

LOCK TABLES `wp_wpil_keyword_select_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_keyword_select_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_keyword_select_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_keywords`
--

DROP TABLE IF EXISTS `wp_wpil_keywords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keywords` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `keyword` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `link` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `add_same_link` int unsigned NOT NULL,
  `link_once` int unsigned NOT NULL,
  `select_links` tinyint(1) DEFAULT '0',
  `set_priority` tinyint(1) DEFAULT '0',
  `priority_setting` int DEFAULT '0',
  `restrict_date` tinyint(1) DEFAULT '0',
  `restricted_date` datetime DEFAULT NULL,
  `restrict_cats` tinyint(1) DEFAULT '0',
  `restricted_cats` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_keywords`
--

LOCK TABLES `wp_wpil_keywords` WRITE;
/*!40000 ALTER TABLE `wp_wpil_keywords` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_keywords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_report_links`
--

DROP TABLE IF EXISTS `wp_wpil_report_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_report_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL,
  `clean_url` text COLLATE utf8mb4_unicode_ci,
  `raw_url` text COLLATE utf8mb4_unicode_ci,
  `host` text COLLATE utf8mb4_unicode_ci,
  `anchor` text COLLATE utf8mb4_unicode_ci,
  `internal` tinyint(1) DEFAULT '0',
  `has_links` tinyint(1) NOT NULL DEFAULT '0',
  `post_type` text COLLATE utf8mb4_unicode_ci,
  `location` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`link_id`),
  KEY `post_id` (`post_id`),
  KEY `clean_url` (`clean_url`(500))
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_report_links`
--

LOCK TABLES `wp_wpil_report_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_report_links` DISABLE KEYS */;
INSERT INTO `wp_wpil_report_links` VALUES (18,203,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(19,201,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(20,199,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(21,197,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(22,195,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(23,177,'http://sadepisaroitaniitynkukkasilla.fi/mita-muotisuunnittelija-tekee/','http://sadepisaroitaniitynkukkasilla.fi/mita-muotisuunnittelija-tekee','sadepisaroitaniitynkukkasilla.fi','klassisessa ',1,1,'post','content'),(24,177,'http://sadepisaroitaniitynkukkasilla.fi/mika-on-muotisuunnittelu/','http://sadepisaroitaniitynkukkasilla.fi/mika-on-muotisuunnittelu','sadepisaroitaniitynkukkasilla.fi','alkaen',1,1,'post','content'),(25,173,'http://sadepisaroitaniitynkukkasilla.fi/mika-on-muotisuunnittelu/','http://sadepisaroitaniitynkukkasilla.fi/mika-on-muotisuunnittelu','sadepisaroitaniitynkukkasilla.fi','tuotantoon ',1,1,'post','content'),(26,173,'http://sadepisaroitaniitynkukkasilla.fi/matkailu/','http://sadepisaroitaniitynkukkasilla.fi/matkailu','sadepisaroitaniitynkukkasilla.fi','tuomiseen ',1,1,'post','content'),(27,170,'http://sadepisaroitaniitynkukkasilla.fi/matkailu/','http://sadepisaroitaniitynkukkasilla.fi/matkailu','sadepisaroitaniitynkukkasilla.fi','näytettävä ',1,1,'post','content'),(28,170,'http://sadepisaroitaniitynkukkasilla.fi/mita-muotisuunnittelija-tekee/','http://sadepisaroitaniitynkukkasilla.fi/mita-muotisuunnittelija-tekee','sadepisaroitaniitynkukkasilla.fi','innovatiivisia ',1,1,'post','content'),(29,170,'https://www.suomalaiset-kasinot.net/kasinot-ilman-rekisteroitymista/','https://www.suomalaiset-kasinot.net/kasinot-ilman-rekisteroitymista/','suomalaiset-kasinot.net','suomalaiset-kasinot',0,1,'post','content'),(30,134,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(31,132,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(32,135,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(33,133,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(34,130,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(35,129,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(36,131,NULL,NULL,NULL,NULL,NULL,0,'post','content'),(37,128,NULL,NULL,NULL,NULL,NULL,0,'post','content');
/*!40000 ALTER TABLE `wp_wpil_report_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_url_links`
--

DROP TABLE IF EXISTS `wp_wpil_url_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_url_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `url_id` int unsigned NOT NULL,
  `post_id` int unsigned NOT NULL,
  `post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `anchor` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `relative_link` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_url_links`
--

LOCK TABLES `wp_wpil_url_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_url_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_url_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpil_urls`
--

DROP TABLE IF EXISTS `wp_wpil_urls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_urls` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `old` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `new` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpil_urls`
--

LOCK TABLES `wp_wpil_urls` WRITE;
/*!40000 ALTER TABLE `wp_wpil_urls` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_urls` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2025-06-12 14:57:58